06/10 Redesign theme color

This commit is contained in:
2026-06-10 14:29:16 -04:00
parent 54f297d8b6
commit 935ede9b05
+11 -8
View File
@@ -58,7 +58,7 @@
--jqc-accent: #2563eb; --jqc-accent: #2563eb;
--jqc-accent-700: #1d4ed8; --jqc-accent-700: #1d4ed8;
--jqc-accent-50: #eff6ff; --jqc-accent-50: #eff6ff;
--jqc-navbar: #1a1d23; --jqc-navbar: #2563eb; /* bright blue top bar (matches the app accent) */
--jqc-shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .05); --jqc-shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .05);
--jqc-shadow-md: 0 4px 24px rgba(15, 23, 42, .10); --jqc-shadow-md: 0 4px 24px rgba(15, 23, 42, .10);
} }
@@ -80,26 +80,29 @@ h1, h2, h3, h4, h5, h6,
.text-muted { color: var(--jqc-muted) !important; } .text-muted { color: var(--jqc-muted) !important; }
a { text-underline-offset: 2px; } a { text-underline-offset: 2px; }
/* ── 3. Navbar — dark slate chrome (matches premium dark card-headers) ────── */ /* ── 3. Navbar — bright blue chrome (app accent) ─────────────────────────── */
.navbar.bg-primary { .navbar.bg-primary {
background-color: var(--jqc-navbar) !important; background-color: var(--jqc-navbar) !important;
border-bottom: 1px solid rgba(255, 255, 255, .06); border-bottom: 1px solid rgba(0, 0, 0, .08);
box-shadow: 0 1px 0 rgba(15, 23, 42, .04); box-shadow: 0 1px 3px rgba(15, 23, 42, .12);
} }
.navbar .navbar-brand { .navbar .navbar-brand {
font-weight: 700; font-weight: 700;
letter-spacing: -.01em; letter-spacing: -.01em;
} }
.navbar-dark .navbar-nav .nav-link { .navbar-dark .navbar-nav .nav-link {
color: rgba(255, 255, 255, .80); color: rgba(255, 255, 255, .85);
border-radius: 6px; border-radius: 6px;
padding-inline: .7rem; padding-inline: .7rem;
transition: background-color .15s, color .15s; transition: background-color .15s, color .15s;
} }
.navbar-dark .navbar-nav .nav-link:hover { color: #fff; } .navbar-dark .navbar-nav .nav-link:hover {
color: #fff;
background-color: rgba(255, 255, 255, .10);
}
.navbar-dark .navbar-nav .nav-link.active { .navbar-dark .navbar-nav .nav-link.active {
background-color: rgba(37, 99, 235, .22) !important; background-color: rgba(255, 255, 255, .20) !important;
box-shadow: inset 0 -2px 0 var(--jqc-accent) !important; box-shadow: inset 0 -2px 0 rgba(255, 255, 255, .65) !important;
color: #fff !important; color: #fff !important;
} }