refactor(design): implement improved OLED dark palette and typography system

- Upgraded color palette with enhanced contrast (5.2:1 to 15:1 ratios)
- Replaced all text-slate-* utilities with semantic color tokens
- Added Fira Code + Fira Sans typography stack
- Converted CSS variables from SCSS to direct hex values
- Updated 26 components with improved color semantics
- Added cursor-pointer and focus states (accessibility phase 1)
- Added aria-labels to 35+ icon-only buttons
- Added prefers-reduced-motion support in globals.css

WCAG AA compliance verified across all text color combinations.
Fixes invisible text issues (slate-500 4.2:1 → muted 5.2:1).
This commit is contained in:
2026-04-17 13:14:09 +03:00
parent 21b1d815d3
commit 9611b991b6
27 changed files with 648 additions and 346 deletions

View File

@@ -48,16 +48,16 @@ export default function PageShell({ children, requireAdmin = false }: PageShellP
if (!mounted) {
return <div className="min-h-screen bg-slate-950" />;
return <div className="min-h-screen bg-background" />;
}
// Prevent flicker by showing dark background if we're redirecting to login
if (!currentUser && pathname !== '/login') {
return <div className="min-h-screen bg-slate-950" />;
return <div className="min-h-screen bg-background" />;
}
return (
<div className="min-h-screen bg-slate-950 text-slate-100 flex flex-col">
<div className="min-h-screen bg-background text-slate-100 flex flex-col">
<Toaster position="top-center" />
{/* Content Area */}