From 85de5b621f3275662e7e26bb4903ca742f93c159 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Wed, 19 Nov 2025 15:08:03 +0000 Subject: [PATCH] fix: Sync auto theme sidebar color with explicit dark theme - Auto theme dark mode now uses #3a3d3e (matches explicit dark) - Previously used #2a2a2a causing visible difference when switching - Ensures only two visual states (light/dark) regardless of theme mode --- static/css/01-foundation/_themes.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/css/01-foundation/_themes.css b/static/css/01-foundation/_themes.css index 2d858f5..63123d0 100644 --- a/static/css/01-foundation/_themes.css +++ b/static/css/01-foundation/_themes.css @@ -148,8 +148,8 @@ --accent-blue: #3399ff; --accent-green: #2ecc71; - /* Sidebar (for non-clean theme) */ - --sidebar-bg: #2a2a2a; + /* Sidebar (for non-clean theme) - matches explicit dark theme */ + --sidebar-bg: #3a3d3e; /* Legacy CV content variables - theme-aware overrides */ --text-dark: #e0e0e0; /* Light text for dark background */