diff --git a/static/css/color-theme.css b/static/css/color-theme.css index 2e0a63d..2d0a147 100644 --- a/static/css/color-theme.css +++ b/static/css/color-theme.css @@ -182,11 +182,11 @@ /* Dynamic colors ONLY on hover based on active theme mode */ .color-theme-switcher:hover[data-theme-mode="light"] { - background: #f39c12 !important; /* Warm sun yellow for light mode */ + background: #ffd700 !important; /* Bright sun yellow (gold) for light mode */ } .color-theme-switcher:hover[data-theme-mode="dark"] { - background: #3498db !important; /* Cool moon blue for dark mode */ + background: #2c3e50 !important; /* Dark nighty blue for dark mode */ } .color-theme-switcher:hover[data-theme-mode="auto"] { @@ -202,12 +202,12 @@ /* At-bottom state - dynamic colors based on theme mode (matches hover) */ .color-theme-switcher.at-bottom[data-theme-mode="light"] { opacity: 1; - background: #f39c12 !important; /* Warm sun yellow for light mode */ + background: #ffd700 !important; /* Bright sun yellow (gold) for light mode */ } .color-theme-switcher.at-bottom[data-theme-mode="dark"] { opacity: 1; - background: #3498db !important; /* Cool moon blue for dark mode */ + background: #2c3e50 !important; /* Dark nighty blue for dark mode */ } .color-theme-switcher.at-bottom[data-theme-mode="auto"] {