From b1f82d91d2f7576bd7c7462c7b15ef01fcbd15c2 Mon Sep 17 00:00:00 2001 From: Marcel Date: Sun, 29 Mar 2026 12:31:42 +0200 Subject: [PATCH] style: teal accent underline on link hover globally Any link that renders an underline on hover now gets the brand accent colour (--c-accent) as its decoration colour. Links that suppress underlines (nav, back-links, button-style anchors) are unaffected. Dark mode already maps --c-accent to the stronger turquoise (#00c7b1). Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/routes/layout.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/routes/layout.css b/frontend/src/routes/layout.css index 2c191046..2eb88aa9 100644 --- a/frontend/src/routes/layout.css +++ b/frontend/src/routes/layout.css @@ -213,4 +213,8 @@ background-color: var(--c-surface); color: var(--c-ink); } + + a:hover { + text-decoration-color: var(--c-accent); + } }