diff options
| author | frosty <gabriel@bwaaa.monster> | 2026-03-18 06:01:42 -0400 |
|---|---|---|
| committer | frosty <gabriel@bwaaa.monster> | 2026-03-18 06:01:42 -0400 |
| commit | 39184b8a7975eb141ffa2dc11ed87e90113a95c3 (patch) | |
| tree | 9d2dec26ed5c6428394e8bc30d390b445e5d5659 /static | |
| parent | 6e36f13ff7d0b38155c94eb59009ff0e3d1ec5e7 (diff) | |
| download | omnisearch-39184b8a7975eb141ffa2dc11ed87e90113a95c3.tar.gz | |
fix: made dark theme default
Diffstat (limited to 'static')
| -rw-r--r-- | static/main.css | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/static/main.css b/static/main.css index fd69035..ffd1199 100644 --- a/static/main.css +++ b/static/main.css @@ -1,23 +1,23 @@ :root { - --bg-main: #ffffff; - --bg-card: #f8f9fa; - --border: #e0e0e0; - --text-primary: #1a1a1a; - --text-secondary: #5f6368; - --text-muted: #757575; - --accent: #202124; - --accent-glow: rgba(0,0,0,0.05); -} -@media (prefers-color-scheme: dark) { + --bg-main: #121212; + --bg-card: #1e1e1e; + --border: #333333; + --text-primary: #ffffff; + --text-secondary: #a0a0a0; + --text-muted: #d1d1d1; + --accent: #e2e2e2; + --accent-glow: rgba(255,255,255,0.1); +} +@media (prefers-color-scheme: light) { :root { - --bg-main: #121212; - --bg-card: #1e1e1e; - --border: #333333; - --text-primary: #ffffff; - --text-secondary: #a0a0a0; - --text-muted: #d1d1d1; - --accent: #e2e2e2; - --accent-glow: rgba(255,255,255,0.1); + --bg-main: #ffffff; + --bg-card: #f8f9fa; + --border: #e0e0e0; + --text-primary: #1a1a1a; + --text-secondary: #5f6368; + --text-muted: #757575; + --accent: #202124; + --accent-glow: rgba(0,0,0,0.05); } } |
