From 9803e174494c199cc426f70f04fb024518f05473 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 18 Jan 2024 22:54:20 -0600 Subject: Use new palette values for main palette (#2566) * Use new palette values for main palette * Drawer bg in dark mode --- web/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'web') diff --git a/web/index.html b/web/index.html index 46b20be1f..a82abea90 100644 --- a/web/index.html +++ b/web/index.html @@ -66,26 +66,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%, 10%); 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%, 10%); color-scheme: dark; } } -- cgit 1.4.1