diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-06-18 20:18:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-19 00:18:43 +0000 |
commit | 451bcab01fd591ec54b63af0fc7084dc9f37928b (patch) | |
tree | 5b7ae78d7187c77f4b12bf377524e837e9b24606 /ext/css/popup-preview.css | |
parent | c002e585fcbfc89b2c345a10c0663336f31442af (diff) |
Add auto option to body theme (#1086)
* Add auto option to body theme
* Fix firefox bug where themes do not set correctly in settings due to getOptions failing
Diffstat (limited to 'ext/css/popup-preview.css')
-rw-r--r-- | ext/css/popup-preview.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/css/popup-preview.css b/ext/css/popup-preview.css index a72edc65..48a1a091 100644 --- a/ext/css/popup-preview.css +++ b/ext/css/popup-preview.css @@ -26,6 +26,7 @@ --animation-duration: 0s; --example-text-color: #333333; + --background-color: #f8f9fa; } :root[data-loaded=true] { --animation-duration: 0.25s; @@ -33,15 +34,16 @@ :root[data-theme=dark] { --example-text-color: #d4d4d4; + --background-color: #1e1e1e; } html { transition: background-color var(--animation-duration) linear 0s, color var(--animation-duration) linear 0s; - background-color: rgba(255, 255, 255, 0); + background-color: var(--background-color); } html.dark { - background-color: #1e1e1e; + background-color: var(--background-color); } html, body { |