about summary refs log tree commit diff
path: root/theme-dark.css
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@gmail.com>2018-03-22 18:35:00 -0400
committerZach DeCook <zachdecook@gmail.com>2018-03-22 18:35:00 -0400
commite4094365381c326b7849c86983461b86ef0cf5e5 (patch)
tree94cdf45c0cf285d045579bfdfbbdcae760dcbfce /theme-dark.css
parent7160ebb279191d94d77c6d662774d282fd88ce94 (diff)
downloadprosongsa-e4094365381c326b7849c86983461b86ef0cf5e5.tar.gz
* Theme: Ability to change between light and dark themes
Diffstat (limited to 'theme-dark.css')
-rw-r--r--theme-dark.css15
1 files changed, 15 insertions, 0 deletions
diff --git a/theme-dark.css b/theme-dark.css
new file mode 100644
index 0000000..f47b25b
--- /dev/null
+++ b/theme-dark.css
@@ -0,0 +1,15 @@
+body {
+	background-color: #001144;
+	color: white;
+}
+pre {
+	background-color: black;
+	color: white;
+}
+canvas {
+	-webkit-filter: invert(100%);
+	filter: invert(100%);
+}
+input, select {
+	color: black;
+}