From 228ed28d78d6a9d64a2600147543c191cdd5c825 Mon Sep 17 00:00:00 2001 From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com> Date: Mon, 7 Mar 2022 08:05:41 -0800 Subject: [PATCH] missing css --- qortal-ui-core/src/styles/switch-theme.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 qortal-ui-core/src/styles/switch-theme.css diff --git a/qortal-ui-core/src/styles/switch-theme.css b/qortal-ui-core/src/styles/switch-theme.css new file mode 100644 index 00000000..eab67ff9 --- /dev/null +++ b/qortal-ui-core/src/styles/switch-theme.css @@ -0,0 +1,15 @@ +html { + /* color pallet */ + --white: #ffffff; + --black: #080808; + --gray: #c8c8c8; + --graylight: #dddddd; + --plugback: #ffffff; +} + +html[theme="dark"] { + --white: #36393f; + --black: #f8f8f8; + --gray: #d8d8d8; + --plugback: #36393f; +} \ No newline at end of file