aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorfrosty <gabriel@bwaaa.monster>2026-03-18 06:41:19 -0400
committerfrosty <gabriel@bwaaa.monster>2026-03-18 06:41:19 -0400
commit81ba9021a24254b8c3c4bbb21c6c0a8d07c3de68 (patch)
tree1cab35c74b349bcefb37038c7da19599fa265225 /static
parentb46c7a2cf38e36767e7653a9913f863be6159b87 (diff)
downloadomnisearch-81ba9021a24254b8c3c4bbb21c6c0a8d07c3de68.tar.gz
Revert "fix: made dark theme default"
This reverts commit 39184b8a7975eb141ffa2dc11ed87e90113a95c3.
Diffstat (limited to 'static')
-rw-r--r--static/main.css36
1 files changed, 18 insertions, 18 deletions
diff --git a/static/main.css b/static/main.css
index ffd1199..fd69035 100644
--- a/static/main.css
+++ b/static/main.css
@@ -1,23 +1,23 @@
: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);
-}
-@media (prefers-color-scheme: light) {
+ --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) {
: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);
+ --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);
}
}