🐜 fix(www): Fix bg colors on light mode

This commit is contained in:
Wanjohi
2025-05-17 01:08:38 +03:00
parent e1a903a7c9
commit 80deb82d25
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="rgba(255,255,255,0.8)"
content="#f4f5f6"
/>
<meta
name="theme-color"

View File

@@ -39,7 +39,7 @@ globalStyle("html", {
// Hardcode colors
"@media": {
"(prefers-color-scheme: light)": {
backgroundColor: "rgba(255,255,255,0.8)",
backgroundColor: "#f4f5f6",
},
"(prefers-color-scheme: dark)": {
backgroundColor: "rgb(19,21,23)",