feat(ext): sweep inline blue/red colors to gold/theca-red

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

View File

@@ -181,7 +181,7 @@ function showPrompt(
msgSpan.style.cssText = 'flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;';
msgSpan.appendChild(document.createTextNode(`${actionLabel} login for `));
const hostStrong = document.createElement('strong');
hostStrong.style.color = '#58a6ff';
hostStrong.style.color = '#d2ab43';
hostStrong.textContent = hostname;
msgSpan.appendChild(hostStrong);
if (username) {
@@ -192,7 +192,7 @@ function showPrompt(
const saveBtn = document.createElement('button');
saveBtn.textContent = actionLabel;
saveBtn.style.cssText = [
'background:#1f6feb', 'color:#fff', 'border:none', 'padding:5px 14px',
'background:#7c5719', 'color:#fff', 'border:none', 'padding:5px 14px',
'border-radius:3px', 'cursor:pointer', 'font-family:inherit', 'font-size:12px',
'white-space:nowrap',
].join('; ');

View File

@@ -70,7 +70,7 @@ export function injectFieldIcons(
icon.style.cssText = [
'width: 20px', 'height: 20px', 'line-height: 20px',
'text-align: center', 'font-size: 10px', 'font-weight: 700',
'font-family: monospace', 'color: #fff', 'background: #1f6feb',
'font-family: monospace', 'color: #fff', 'background: #7c5719',
'border-radius: 3px', 'cursor: pointer', 'user-select: none',
'box-sizing: border-box',
].join('; ');
@@ -200,7 +200,7 @@ function showAckHint(hostname: string): void {
].join('; ');
const title = document.createElement('div');
title.style.cssText = 'font-weight: 700; margin-bottom: 4px; color: #58a6ff;';
title.style.cssText = 'font-weight: 700; margin-bottom: 4px; color: #d2ab43;';
title.textContent = 'relicario';
hint.appendChild(title);