aboutsummaryrefslogtreecommitdiff
path: root/src/styles
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-05-03 11:16:44 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-05-03 11:16:44 +0530
commitf3606844da26a2e36df58be8ae77e22209a6d14f (patch)
tree9f6b0fed52b3c000fa0fdeab9c7ada1bf5371af4 /src/styles
parent060d935a47b244656e53c880cc9e792fd5841982 (diff)
new css theme!
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/_theme.scss48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/styles/_theme.scss b/src/styles/_theme.scss
index 436ca2b..3011986 100644
--- a/src/styles/_theme.scss
+++ b/src/styles/_theme.scss
@@ -3,12 +3,15 @@
$defFont: 'Quicksand', sans-serif;
/* Inspired by Dracula */
+/*
$defBG: #282A36;
$altBG: #383A59;
$floatingContainerBG: #282C3466;
$floatingBG: #2e323b;
+$formPaneBG: $defBG;
+
$defFG: #F2F2F2;
$altFG: #FF79C6;
@@ -37,3 +40,48 @@ $warningBorderColor: $warningColor;
$shadowColor: #232627;
$defBigShadow: 0px 8px 4px $shadowColor;
$floatingShadow: 6px 6px 6px $shadowColor;
+*/
+
+$background0: #282C3466;
+$background1: #ECF5D9;
+$background2: #A480CF;
+$background3: #F7F2DF;
+
+$underline0: gray;
+$underline1: #F83A59;
+$underline2: #FF79C6;
+
+$defBG: $background1;
+/*$altBG: #F83A59;*/
+$altBG: $background2;
+
+$floatingContainerBG: $background0;
+$floatingBG: $background3;
+
+$formPaneBG: $defBG;
+
+$defFG: #000000;
+$altFG: #F83A59;
+
+$defLink: $defFG;
+$altLink: $altFG;
+
+$paneBorderColor: #232627;
+$formPaneBorderColor: $paneBorderColor;
+
+$defBorderColor: lightgreen;
+$altBorderColor: #232627;
+
+
+$labelUnderlineColor: $underline1;
+
+$tableDefBorderColor: $underline1;
+$tableAltBorderColor: $underline2;
+$tableDisabledBorderColor: $underline0;
+
+$warningColor: red;
+$warningBorderColor: $warningColor;
+
+$shadowColor: #232627;
+$defBigShadow: 0px 2px 4px $shadowColor;
+$floatingShadow: 6px 6px 6px $shadowColor;