diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-28 15:40:45 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-28 15:40:45 +0200 |
commit | 365105df0ee6f7d71aed03263783fde840b5b455 (patch) | |
tree | 1794af6a51b181a15de82025c4ed06211b645f61 /static | |
parent | 9366789872670a4fefd546bb3469def98d3e0b3d (diff) | |
download | Aurora-data-365105df0ee6f7d71aed03263783fde840b5b455.tar.gz Aurora-data-365105df0ee6f7d71aed03263783fde840b5b455.zip |
Make theme follow system theme
Diffstat (limited to 'static')
-rw-r--r-- | static/theme.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/static/theme.css b/static/theme.css index e00cd60..7e0d6fc 100644 --- a/static/theme.css +++ b/static/theme.css @@ -2,6 +2,7 @@ body { --surface: rgb(247, 250, 252); --surface: #f7fafc; --on-surface: #1a202c; + --elevation-1-shadow: 0px -6px 7px 0px black; --divider: #e2e8f0; --gradient-1: linear-gradient(90deg, #84fab0, #8fd3f4 51%, #84fab0) 100% / 200%; @@ -14,6 +15,7 @@ body { body.dark { --surface: #161616; --on-surface: #a5a5a5; + --elevation-1-shadow: none; --divider: #363636; --gradient-1: linear-gradient(90deg, #0c5f2b, #0a2531 51%, #1e6439) 100% / 200%; |