Stream A: DW brand theme — Instrument Sans + IBM Plex Mono, light/dark mode, all hardcoded colors replaced

- Replace Solar Momentum palette with DiligenceWorks brand identity
- Typography: Outfit → Instrument Sans, Plus Jakarta Sans → IBM Plex Mono (data/stats)
- CSS variables: --orange* → --accent*, new DW blue #2952CC / #6B9BFF
- Dark mode: prefers-color-scheme media query + manual data-theme override
- Border radii: 14/10/20px → 8/6/12px (professional, less playful)
- Font weights: 800/900 → 600/700 (DW uses lighter weights)
- Fixed 30+ hardcoded hex values across 16 files (UI-06)
- Gate banners, progress bars, category chips all use CSS variables
This commit is contained in:
Claude 2026-06-21 23:12:25 +00:00
parent 83e715dbc4
commit c075eb9257
16 changed files with 240 additions and 140 deletions

View file

@ -31,7 +31,7 @@ export default function Login() {
minHeight: '100dvh',
display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center',
padding: '24px',
background: 'linear-gradient(170deg, #FF8A65 0%, #FF5722 30%, #E64A19 60%, #1B1B2F 100%)',
background: 'linear-gradient(170deg, var(--accent-light) 0%, var(--accent) 30%, var(--accent-dark) 60%, var(--text) 100%)',
}}>
<div style={{ width: '100%', maxWidth: '380px' }}>
{/* Brand */}
@ -61,9 +61,9 @@ export default function Login() {
style={{
borderRadius: 'var(--r-sm)', padding: '10px',
fontWeight: 700, fontSize: '0.85rem',
background: mode === m ? 'var(--orange)' : 'transparent',
background: mode === m ? 'var(--accent)' : 'transparent',
color: mode === m ? '#fff' : 'var(--text-2)',
boxShadow: mode === m ? 'var(--shadow-orange)' : 'none',
boxShadow: mode === m ? 'var(--shadow-accent)' : 'none',
}}>
{m === 'login' ? 'Sign In' : 'Sign Up'}
</button>