diff options
author | TotalCaesar659 <14265316+TotalCaesar659@users.noreply.github.com> | 2020-05-07 04:21:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 04:21:06 +0300 |
commit | cd5704993bd9bcfaef6012a77d81b17056963696 (patch) | |
tree | ea3f2a30d0f20a9c3ed05692b2b0f62cd99c7ddf /pages | |
parent | Add Dark Mode support (diff) | |
download | libredirect-cd5704993bd9bcfaef6012a77d81b17056963696.zip |
Add Light Mode
Diffstat (limited to 'pages')
-rw-r--r-- | pages/styles.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pages/styles.css b/pages/styles.css index 037552c8..bd0455ac 100644 --- a/pages/styles.css +++ b/pages/styles.css @@ -280,3 +280,10 @@ body, body.popup, header, h1, input, a#more-options.button, div#general.tabconte color: #bfbfbf; } } + +@media (prefers-color-scheme: light) { +body, body.popup, header, h1, input, a#more-options.button, div#general.tabcontent, div#advanced.tabcontent, select, div#whitelist.tabcontent, button#general-tab.tablinks.active, button#advanced-tab.tablinks.active, button#whitelist-tab.tablinks.active { + background-color: #ffffff; + color: #000000; +} +} |