aboutsummaryrefslogtreecommitdiff
path: root/web/style/themes.css
diff options
context:
space:
mode:
Diffstat (limited to 'web/style/themes.css')
-rw-r--r--web/style/themes.css20
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);
+}