From b36608ed00c55095d3106fe2910bf57d1958fb6a Mon Sep 17 00:00:00 2001 From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com> Date: Tue, 8 Mar 2022 11:49:55 +0100 Subject: [PATCH] Colors for switch --- qortal-ui-core/src/styles/switch-theme.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qortal-ui-core/src/styles/switch-theme.css b/qortal-ui-core/src/styles/switch-theme.css index b215560b..c9acec2d 100644 --- a/qortal-ui-core/src/styles/switch-theme.css +++ b/qortal-ui-core/src/styles/switch-theme.css @@ -1,10 +1,11 @@ html { - /* color pallet */ --white: #ffffff; --black: #080808; --gray: #c8c8c8; --graylight: #bbbbbb; --plugback: #ffffff; + --switchbackground: #cccccc; + --switchborder: #333333; } html[theme="dark"] { @@ -13,4 +14,6 @@ html[theme="dark"] { --gray: #d8d8d8; --graylight: #dddddd; --plugback: #36393f; + --switchbackground: #eeeeee; + --switchborder: #03a9f4; }