fix(contrast): white-on-white text bug — homepage 2x2 titles, .nav-link-bb, /news date inputs
The 2026 rebrand swept surface hexes from dark to light but left near-white text colors baked into components. Three approved fixes: - FeaturedBento.tsx:255 — 2x2 grid card titles base color #e0e0e0 -> #0F172A (brand-navy). Hover stays #1D4ED8. - tailwind.css .nav-link-bb — base color #cccccc -> var(--brand-text). Hover unchanged. - ArticleFeed.tsx :375 + :385 — date input text #888 -> #475569 (brand-text-muted) and dropped [color-scheme:dark] so Chrome stops rendering the dark date-picker chrome on a now-white input. Findings #2, #3, #6 in the audit were not touched — Ryan flagged them as unverified.
This commit is contained in:
@@ -218,7 +218,7 @@ body {
|
||||
font-size: 12px;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: #cccccc;
|
||||
color: var(--brand-text);
|
||||
text-decoration: none;
|
||||
padding: 4px 0;
|
||||
transition: color var(--transition-fast);
|
||||
|
||||
Reference in New Issue
Block a user