diff options
| -rw-r--r-- | ext/css/action-popup.css | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/ext/css/action-popup.css b/ext/css/action-popup.css index db2e7f1e..4cf65076 100644 --- a/ext/css/action-popup.css +++ b/ext/css/action-popup.css @@ -532,3 +532,12 @@ select.profile-select {          overflow-wrap: break-word;      }  } + +/* Dark mode before themes are applied +   DO NOT use this for normal theming */ +@media (prefers-color-scheme: dark) { +    body:not([data-loaded=true]) { +        color: #cccccc; +        background-color: #1e1e1e; +    } +} |