about summary refs log tree commit diff
path: root/bskyweb/templates/base.html
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-01-18 22:54:20 -0600
committerGitHub <noreply@github.com>2024-01-18 20:54:20 -0800
commit9803e174494c199cc426f70f04fb024518f05473 (patch)
tree86a3f5a16f716734201784c8b1f88c644d2df4bf /bskyweb/templates/base.html
parent95f70a9a6aec3a4c1b23f837a26bc5c0d4266554 (diff)
downloadvoidsky-9803e174494c199cc426f70f04fb024518f05473.tar.zst
Use new palette values for main palette (#2566)
* Use new palette values for main palette

* Drawer bg in dark mode
Diffstat (limited to 'bskyweb/templates/base.html')
-rw-r--r--bskyweb/templates/base.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html
index 942e18fcc..50dbaa24b 100644
--- a/bskyweb/templates/base.html
+++ b/bskyweb/templates/base.html
@@ -62,26 +62,26 @@
     :root {
       --text: black;
       --background: white;
-      --backgroundLight: #F3F3F8;
+      --backgroundLight: hsl(211, 20%, 95%);
     }
     html.colorMode--dark {
       --text: white;
-      --background: black;
-      --backgroundLight: #26272D;
+      --background: hsl(211, 20%, 4%);
+      --backgroundLight: hsl(211, 20%, 20%);
       color-scheme: dark;
     }
     @media (prefers-color-scheme: light) {
       html.colorMode--system {
         --text: black;
         --background: white;
-        --backgroundLight: #F3F3F8;
+        --backgroundLight: hsl(211, 20%, 95%);
       }
     }
     @media (prefers-color-scheme: dark) {
       html.colorMode--system {
         --text: white;
-        --background: black;
-        --backgroundLight: #26272D;
+        --background: hsl(211, 20%, 4%);
+        --backgroundLight: hsl(211, 20%, 20%);
         color-scheme: dark;
       }
     }