diff options
author | tpart <tpart120@proton.me> | 2024-04-12 13:49:06 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-04-12 13:49:15 +0200 |
commit | f4615488b3bb25187003d457927c5ad3ea1d7900 (patch) | |
tree | 891d211670872b75608b0a7f67cff775c69f03a3 | |
parent | 5f190e66010fe8044b8929e7d8564cd8f0649ab3 (diff) | |
download | jellything-f4615488b3bb25187003d457927c5ad3ea1d7900.tar jellything-f4615488b3bb25187003d457927c5ad3ea1d7900.tar.bz2 jellything-f4615488b3bb25187003d457927c5ad3ea1d7900.tar.zst |
Improve prop colours
-rw-r--r-- | web/style/themes.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/style/themes.css b/web/style/themes.css index f405815..f5bf57b 100644 --- a/web/style/themes.css +++ b/web/style/themes.css @@ -23,7 +23,7 @@ body.theme-Dark { --background-light: #1c1c1c; --background-very-light: #323232; --background-disable: rgb(128, 128, 128); - --background-prop: rgba(0, 0, 0, 0.8); + --background-prop: rgba(50, 50, 50, 0.8); --font: #f1f1f1; --font-dark: rgb(122, 122, 122); --font-highlight: white; @@ -63,7 +63,7 @@ body.theme-Purple { --background-light: #1c1c1c; --background-very-light: #323232; --background-disable: rgb(128, 128, 128); - --background-prop: rgba(0, 0, 0, 0.8); + --background-prop: rgba(50, 50, 50, 0.8); --font: #f1f1f1; --font-dark: rgb(122, 122, 122); --font-highlight: white; |