From 615198b0801e8b5d9099ae563f742425ff01dfe8 Mon Sep 17 00:00:00 2001 From: Andy Charlwood Date: Sun, 15 Feb 2026 14:30:21 +0000 Subject: [PATCH] feat: US-009 - Replace hardcoded colors with design tokens --- src/components/LoginScreen.tsx | 32 ++++++++++++++++---------------- src/index.css | 1 + 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/components/LoginScreen.tsx b/src/components/LoginScreen.tsx index db68a00..2e7abfb 100644 --- a/src/components/LoginScreen.tsx +++ b/src/components/LoginScreen.tsx @@ -163,10 +163,10 @@ export function LoginScreen({ onComplete }: LoginScreenProps) { }, [startLoginSequence, addTimeout, prefersReducedMotion]) const buttonBg = buttonPressed - ? '#085858' + ? 'var(--accent-pressed, #085858)' : buttonHovered && canLogin - ? '#0A8080' - : '#0D6E6E' + ? 'var(--accent-hover, #0A8080)' + : 'var(--accent, #0D6E6E)' return ( {username} {activeField === 'username' && (