fix: made dark theme default

This commit is contained in:
frosty
2026-03-18 06:01:42 -04:00
parent 6e36f13ff7
commit 39184b8a79

View File

@@ -1,23 +1,23 @@
:root { :root {
--bg-main: #ffffff; --bg-main: #121212;
--bg-card: #f8f9fa; --bg-card: #1e1e1e;
--border: #e0e0e0; --border: #333333;
--text-primary: #1a1a1a; --text-primary: #ffffff;
--text-secondary: #5f6368; --text-secondary: #a0a0a0;
--text-muted: #757575; --text-muted: #d1d1d1;
--accent: #202124; --accent: #e2e2e2;
--accent-glow: rgba(0,0,0,0.05); --accent-glow: rgba(255,255,255,0.1);
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: light) {
:root { :root {
--bg-main: #121212; --bg-main: #ffffff;
--bg-card: #1e1e1e; --bg-card: #f8f9fa;
--border: #333333; --border: #e0e0e0;
--text-primary: #ffffff; --text-primary: #1a1a1a;
--text-secondary: #a0a0a0; --text-secondary: #5f6368;
--text-muted: #d1d1d1; --text-muted: #757575;
--accent: #e2e2e2; --accent: #202124;
--accent-glow: rgba(255,255,255,0.1); --accent-glow: rgba(0,0,0,0.05);
} }
} }