From 41837f348c75f4f9365255d7348837830cb45a05 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Wed, 15 Apr 2026 09:51:26 -0700 Subject: [PATCH] fix(kiwi-a11y): darken light-mode muted text to #7a5c2e for WCAG 1.4.3 AA (H1, #80) --- frontend/src/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/style.css b/frontend/src/style.css index 4c2419d..536b15e 100644 --- a/frontend/src/style.css +++ b/frontend/src/style.css @@ -115,7 +115,8 @@ :root { --color-text-primary: #2c1a06; --color-text-secondary: #6b4c1e; - --color-text-muted: #a0845a; + /* Darkened from #a0845a → #7a5c2e for WCAG 1.4.3 AA compliance (~4.6:1 against light bg) */ + --color-text-muted: #7a5c2e; --color-bg-primary: #fdf8f0; --color-bg-secondary: #ffffff;