feat(ext/popup): rename sig-block--blue to --gold for accuracy

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken
2026-04-24 22:15:46 -04:00
parent 976db85a45
commit 5bc75c9f8a
6 changed files with 8 additions and 8 deletions

View File

@@ -70,14 +70,14 @@ export function renderConcealedRow(opts: ConcealedRowOpts): string {
}
export interface SignatureBlockOpts {
accent?: 'blue' | 'green' | 'amber' | 'red';
accent?: 'gold' | 'green' | 'amber' | 'red';
children: string;
}
/// Container for the type-specific signature panel. `children` is HTML
/// the caller has already produced (and escaped where needed).
export function renderSignatureBlock(opts: SignatureBlockOpts): string {
const accent = opts.accent ?? 'blue';
const accent = opts.accent ?? 'gold';
return `
<div class="sig-block sig-block--${accent}">${opts.children}</div>
`;