From 6a6cc29e2b5e55b785ef3cbcba2e6a85e29625f4 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sat, 29 Sep 2018 10:41:35 -0700 Subject: light/dark/black themes --- static/style.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'static/style.css') 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%; +} -- cgit v1.2.3