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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user