fix(theme): increase dark mode contrast for borders, glows, and card edges; DRY color values into CSS variables

This commit is contained in:
2026-04-08 12:22:03 -04:00
parent 2ac894b5d1
commit 16d9af8b96
3 changed files with 27 additions and 12 deletions
+3 -3
View File
@@ -153,7 +153,7 @@ router.afterEach(() => {
<style scoped>
.app-header {
background: linear-gradient(180deg, var(--color-surface), var(--color-bg));
border-bottom: 1px solid rgba(124, 58, 237, 0.08);
border-bottom: 1px solid rgba(124, 58, 237, 0.18);
position: relative;
}
.nav {
@@ -222,8 +222,8 @@ router.afterEach(() => {
.nav-link.router-link-active {
color: #c4b5fd;
font-weight: 600;
background: rgba(124, 58, 237, 0.2);
box-shadow: 0 0 12px rgba(124, 58, 237, 0.2);
background: rgba(124, 58, 237, 0.25);
box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);
}
/* Status indicator */