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:
2026-06-03 13:11:57 +00:00
parent 61363f81be
commit a1148e213b
3 changed files with 4 additions and 4 deletions

View File

@@ -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);