aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorJakob Stendahl <jakob.stendahl@outlook.com>2022-04-28 14:03:02 +0200
committerJakob Stendahl <jakob.stendahl@outlook.com>2022-04-28 14:03:02 +0200
commit9366789872670a4fefd546bb3469def98d3e0b3d (patch)
treef036d780d8302eb3b0716a0601aab885d75a816d /static
parent382d3385c21131d9f9e6d1b3511c38e3ba9cb836 (diff)
downloadAurora-data-9366789872670a4fefd546bb3469def98d3e0b3d.tar.gz
Aurora-data-9366789872670a4fefd546bb3469def98d3e0b3d.zip
Add dark theme (no way to change to it yet)
Diffstat (limited to 'static')
-rw-r--r--static/theme.css24
1 files changed, 24 insertions, 0 deletions
diff --git a/static/theme.css b/static/theme.css
new file mode 100644
index 0000000..e00cd60
--- /dev/null
+++ b/static/theme.css
@@ -0,0 +1,24 @@
+body {
+ --surface: rgb(247, 250, 252);
+ --surface: #f7fafc;
+ --on-surface: #1a202c;
+
+ --divider: #e2e8f0;
+ --gradient-1: linear-gradient(90deg, #84fab0, #8fd3f4 51%, #84fab0) 100% / 200%;
+ --gradient-2: linear-gradient(90deg, rgba(255, 42,228,1) 0%,
+ rgba(164,255,177,1) 60%,
+ rgba(214,255,241,1) 85%,
+ var(--surface) 100%);
+}
+
+body.dark {
+ --surface: #161616;
+ --on-surface: #a5a5a5;
+
+ --divider: #363636;
+ --gradient-1: linear-gradient(90deg, #0c5f2b, #0a2531 51%, #1e6439) 100% / 200%;
+ --gradient-2: linear-gradient(90deg, rgb(110 0 96) 20%,
+ rgb(27 142 43) 60%,
+ rgb(42 70 61) 85%,
+ var(--surface) 100%);
+}