From 33fe93a5913a6e0abcef6925819d4fc901f884d4 Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 9 Jun 2026 19:00:31 +0200 Subject: [PATCH] fix(a11y): raise interlude label contrast to WCAG AA MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #6b7280 (gray-500) on #f5f4f0 yielded ~4.0:1 — below the 4.5:1 AA minimum for normal text. Changed to #4b5563 (gray-600) which provides ~6.9:1. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/routes/layout.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/layout.css b/frontend/src/routes/layout.css index f3b6fe5c..a4af174c 100644 --- a/frontend/src/routes/layout.css +++ b/frontend/src/routes/layout.css @@ -147,7 +147,7 @@ /* Interlude (Zwischentext) — neutral warm surface with left accent border */ --c-interlude-bg: #f5f4f0; --c-interlude-border: #a1dcd8; - --c-interlude-label: #6b7280; + --c-interlude-label: #4b5563; /* Tag color tokens — decorative dot colors on tag chips */ --c-tag-sage: #5a8a6a;