From 126bad7d99ecfd578a8b7b8b843eedd53f102e80 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 8 Apr 2026 23:43:25 -0400 Subject: [PATCH] =?UTF-8?q?fix(header):=20darken=20nav=20text=20in=20light?= =?UTF-8?q?=20mode=20=E2=80=94=20use=20text-secondary=20for=20inactive,=20?= =?UTF-8?q?primary-solid=20for=20active?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/AppHeader.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/AppHeader.vue b/frontend/src/components/AppHeader.vue index 9f52698..4be5a93 100644 --- a/frontend/src/components/AppHeader.vue +++ b/frontend/src/components/AppHeader.vue @@ -208,7 +208,7 @@ router.afterEach(() => { } .nav-link { - color: var(--color-text-muted); + color: var(--color-text-secondary); text-decoration: none; font-size: 0.82rem; padding: 0.3rem 0.75rem; @@ -216,11 +216,11 @@ router.afterEach(() => { transition: background 0.15s, color 0.15s; } .nav-link:hover { - color: var(--color-text-secondary); + color: var(--color-text); background: var(--color-primary-tint); } .nav-link.router-link-active { - color: #c4b5fd; + color: var(--color-primary-solid); font-weight: 600; background: rgba(124, 58, 237, 0.25); box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);