aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass/include
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/sass/include')
-rw-r--r--client/src/sass/include/_mixins.scss2
-rw-r--r--client/src/sass/include/_variables.scss11
2 files changed, 7 insertions, 6 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss
index 0a500b6f3..5163ea056 100644
--- a/client/src/sass/include/_mixins.scss
+++ b/client/src/sass/include/_mixins.scss
@@ -398,7 +398,7 @@
398 398
399 &:checked + span { 399 &:checked + span {
400 border-color: transparent; 400 border-color: transparent;
401 background: $orange-color; 401 background: var(--mainColor);
402 animation: jelly 0.6s ease; 402 animation: jelly 0.6s ease;
403 403
404 &:after { 404 &:after {
diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss
index 91229cee0..3c9fa5939 100644
--- a/client/src/sass/include/_variables.scss
+++ b/client/src/sass/include/_variables.scss
@@ -13,11 +13,12 @@ $grey-background-hover-color: #EFEFEF;
13$grey-foreground-color: #585858; 13$grey-foreground-color: #585858;
14$grey-foreground-hover-color: #303030; 14$grey-foreground-hover-color: #303030;
15 15
16$orange-color: #F1680D; 16// Palette
17$orange-color-lighter: rgb(233, 159, 110); 17$main-color: hsl(24, 90%, 50%);
18$orange-hover-color: #F97D46; 18$main-hover-color: lighten($main-color, 5%);
19 19$main-color-lighter: lighten($main-color, 10%);
20$cyan-color: hsl(187, 77%, 34%); 20$secondary-color: hsl(187, 77, 34);
21//
21 22
22$support-button: inherit; 23$support-button: inherit;
23$support-button-heart: #e83e8c; 24$support-button-heart: #e83e8c;