diff options
author | metamuffin <metamuffin@disroot.org> | 2023-10-24 15:08:15 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-10-24 15:08:15 +0200 |
commit | f4f3a16bca576c202887799066bd896863612e2b (patch) | |
tree | 8ddb9cdc47abae7bc615109f241b2cd12e141128 /web/style/themes.css | |
parent | c1afcdc0dc4e59cb2ce1e8c65b69c5647f2132f3 (diff) | |
download | jellything-f4f3a16bca576c202887799066bd896863612e2b.tar jellything-f4f3a16bca576c202887799066bd896863612e2b.tar.bz2 jellything-f4f3a16bca576c202887799066bd896863612e2b.tar.zst |
partial theme implementation
Diffstat (limited to 'web/style/themes.css')
-rw-r--r-- | web/style/themes.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/web/style/themes.css b/web/style/themes.css new file mode 100644 index 0000000..e006513 --- /dev/null +++ b/web/style/themes.css @@ -0,0 +1,20 @@ +body.theme-dark { + --accent-light: rgb(255, 163, 87); + --accent-dark: rgb(199, 90, 0); + --background-dark: #070707; + --background-light: #1c1c1c; + --background-very-light: #323232; + --font: rgb(218, 218, 218); + --font-dark: rgb(148, 148, 148); + --font-highlight: white; +} +body.theme-light { + --accent-light: rgb(255, 163, 87); + --accent-dark: rgb(199, 90, 0); + --background-dark: #ffffff; + --background-light: #e2e2e2; + --background-very-light: #b9b9b9; + --font: rgb(43, 43, 43); + --font-dark: rgb(0, 0, 0); + --font-highlight: rgb(0, 0, 0); +} |