From e4094365381c326b7849c86983461b86ef0cf5e5 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Thu, 22 Mar 2018 18:35:00 -0400 Subject: * Theme: Ability to change between light and dark themes --- theme-dark.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 theme-dark.css (limited to 'theme-dark.css') 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; +} -- cgit 1.4.1