fix(frontend): theme-aware footer navbar colors

- Add --color-nav-bg and --color-nav-active CSS variables
- Dark: semi-transparent purple-dark tone (rgba 52,50,73 / 0.45 bg)
- Light: light semi-transparent background, accent-tinted active highlight
- Footer background and active nav item now use variables instead of
  hardcoded dark values

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-07 01:10:12 +03:00
parent d38e54e307
commit 135c71ae4d
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -95,7 +95,7 @@
justify-content: space-between;
align-items: center;
padding: 10px;
background-color: rgba(0, 0, 0, 0.45);
background-color: var(--color-nav-bg);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
z-index: 100;
@@ -115,7 +115,7 @@
.nav:hover,
.nav.curr {
background-color: #343249;
background-color: var(--color-nav-active);
color: var(--color-text-primary);
}