aboutsummaryrefslogtreecommitdiffstats
path: root/static/style.css
diff options
context:
space:
mode:
authorAdam Mathes <adam@trenchant.org>2018-09-29 10:41:35 -0700
committerAdam Mathes <adam@trenchant.org>2018-09-29 10:41:35 -0700
commit6a6cc29e2b5e55b785ef3cbcba2e6a85e29625f4 (patch)
tree84e1616333d75e2cfbfbc8dedc27144a7a6faab0 /static/style.css
parent9ed9a09c02336a36e6bae328ed306a7c28de1600 (diff)
downloadneko-6a6cc29e2b5e55b785ef3cbcba2e6a85e29625f4.tar.gz
neko-6a6cc29e2b5e55b785ef3cbcba2e6a85e29625f4.tar.bz2
neko-6a6cc29e2b5e55b785ef3cbcba2e6a85e29625f4.zip
light/dark/black themes
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
index 8956e97..bcb4678 100644
--- a/static/style.css
+++ b/static/style.css
@@ -283,3 +283,30 @@ button {
width: 100%;
}
}
+
+body.dark {
+ color: #fff;
+ background-color: #24292e;
+}
+
+body.black {
+ color: #fff;
+ background-color: black;
+}
+
+body.dark a, body.black a {
+ color: rgb(90, 200, 250);
+}
+
+body.dark button, body.dark #controls li a {
+ color: black;
+}
+
+
+body.black button, body.black #controls li a {
+ color: black;
+}
+
+.themes button {
+ width: 30%;
+}