slice 4: accent palette refinement — blue → teal

Replace the four accent-family hex codes site-wide with the teal palette
(keeps the dark theme; only swaps the accent family, not the dark base):

  #3b82f6 (accent primary CTA)   → #5B7C8D  (teal)        [839×]
  #2563eb (accent-dark / hover)  → #4A6473  (darker teal) [44×]
  #60a5fa (info link, lighter)   → #8FB0C3  (mid teal)    [68×]
  #1e3a5f (accent-muted bg)      → #2F4F5F  (navy)        [44×]

tailwind.config.js tokens updated to match (accent/accent-dark/accent-muted).
Sweep also covers tailwind.css. 108 files touched. The dark base (#0d0d0d,
#111, #161616, #1a1a1a etc.) is intentionally untouched.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-15 23:33:04 +00:00
parent f6fa7570c4
commit 52fe7bceb6
109 changed files with 937 additions and 937 deletions

View File

@@ -6,8 +6,8 @@
/* AI accent (blue) — same hue as --color-accent but exposed via the
spec name --color-text-info so the redesign components can reference
it without coupling to the existing --color-accent. */
--color-text-info: #60a5fa;
--color-text-info-strong: #3b82f6;
--color-text-info: #8FB0C3;
--color-text-info-strong: #5B7C8D;
/* Backgrounds */
--color-background-primary: #0a0a0a;
@@ -53,7 +53,7 @@
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--color-text-info, #60a5fa);
background: var(--color-text-info, #8FB0C3);
animation: bb-pulse 2s infinite ease-in-out;
}
@@ -64,7 +64,7 @@
position: absolute;
inset: 0;
border-radius: 50%;
border: 2px solid var(--color-text-info, #60a5fa);
border: 2px solid var(--color-text-info, #8FB0C3);
animation: bb-ring 1.8s infinite ease-out;
pointer-events: none;
}