From 063821b3e8531c029e8b37d6dc7813e83ca5dff4 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 3 Jun 2023 15:30:30 +0200 Subject: [PATCH] Added dark-mode css --- static/css/dark.css | 48 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 static/css/dark.css diff --git a/static/css/dark.css b/static/css/dark.css new file mode 100644 index 0000000..4774c67 --- /dev/null +++ b/static/css/dark.css @@ -0,0 +1,48 @@ +body { + background-color: #181a1b !important; +} + +#header { + background-color: rgb(74, 91, 96) !important; + color: rgb(205, 200, 194) !important; +} + +.a { + border-color: transparent !important; + background-color: rgb(143, 120, 5) !important; + color: rgb(205, 200, 194) !important; +} + +.b { + border-color: transparent !important; + background-color: rgb(29, 40, 41) !important; + color: rgb(248, 214, 41) !important; +} + +.ab { + background-color: rgb(56, 81, 104) !important; +} + +.ab input:checked + label { + background-color: rgb(143, 57, 34) !important; + border-color: rgb(140, 130, 115) !important; + color: rgb(215, 212, 207) !important; +} + +.separator { + color: rgb(205, 200, 194); +} + +#next { + border-color: initial !important; + background-color: rgb(74, 91, 96) !important; + color: rgb(205, 200, 194) !important; +} + +#questions { + color: rgb(248, 214, 41) !important; +} + +a { + color: rgb(169, 162, 151) !important; +} \ No newline at end of file