From c24863f7ccf32b5345792bb17b503ba63b9871f2 Mon Sep 17 00:00:00 2001 From: JulianPrieber <60265788+JulianPrieber@users.noreply.github.com> Date: Mon, 21 Feb 2022 23:18:38 +0100 Subject: [PATCH] Added dark mode for app.css Added dark mode for app.css that will be used together with said file. The CSS file only changes background and text color. --- css/app-dark.css | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 css/app-dark.css diff --git a/css/app-dark.css b/css/app-dark.css new file mode 100644 index 0000000..24720e6 --- /dev/null +++ b/css/app-dark.css @@ -0,0 +1,4 @@ +* { + background-color: #292929 !important; + color: #FFFFFF !important; +} \ No newline at end of file