diff options
author | Mary <148872143+mary-ext@users.noreply.github.com> | 2024-01-11 11:56:21 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 20:56:21 -0800 |
commit | 0442dcc1a01a613985155c86a5ee042085553f33 (patch) | |
tree | c2231e1eb398ebf5d274c3598cdec5d3b71deaa8 /web | |
parent | c75771047cb49a2cd529f72a2756a456c843a730 (diff) | |
download | voidsky-0442dcc1a01a613985155c86a5ee042085553f33.tar.zst |
fix: add the appropriate color-scheme for dark mode (#2480)
Diffstat (limited to 'web')
-rw-r--r-- | web/index.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html index 18b985bff..5a56e5f76 100644 --- a/web/index.html +++ b/web/index.html @@ -53,6 +53,7 @@ --text: white; --background: black; --backgroundLight: #26272D; + color-scheme: dark; } @media (prefers-color-scheme: light) { html.colorMode--system { @@ -66,6 +67,7 @@ --text: white; --background: black; --backgroundLight: #26272D; + color-scheme: dark; } } |