diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-06-20 14:47:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 18:47:31 +0000 |
commit | f1223635e23c16341e0434741772c8923d197a3c (patch) | |
tree | 1341b2b194e327420f0e3a1b1c7453d2ab641502 /ext/css | |
parent | 332833e7403b0a3f123c4a2831125301ab8c7a77 (diff) |
Remove flashbangs on page transition (#1101)
Diffstat (limited to 'ext/css')
-rw-r--r-- | ext/css/settings.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/css/settings.css b/ext/css/settings.css index 1b7255c3..7a94595f 100644 --- a/ext/css/settings.css +++ b/ext/css/settings.css @@ -2655,3 +2655,11 @@ input[type=number].dictionary-priority { width: 36px; } } + +/* Dark mode before themes are applied + DO NOT use this for normal theming */ +@media (prefers-color-scheme: dark) { + :root:not([data-loaded=true]) { + background-color: #1e1e1e; + } +} |