aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass/include/_variables.scss
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-05-25 14:27:35 +0200
committerChocobozzz <me@florianbigard.com>2023-05-25 14:36:17 +0200
commitffc424259ebe5d670136d6c6183f3d65632655a5 (patch)
tree519b134c872d8c00b43cc96e2e04a2d39b8ccbf7 /client/src/sass/include/_variables.scss
parent38358661e03d141c7129c28f3cc7ddfd6e06e7e8 (diff)
downloadPeerTube-ffc424259ebe5d670136d6c6183f3d65632655a5.tar.gz
PeerTube-ffc424259ebe5d670136d6c6183f3d65632655a5.tar.zst
PeerTube-ffc424259ebe5d670136d6c6183f3d65632655a5.zip
Fix scss lint
Diffstat (limited to 'client/src/sass/include/_variables.scss')
-rw-r--r--client/src/sass/include/_variables.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss
index 1eb3135f4..43a005774 100644
--- a/client/src/sass/include/_variables.scss
+++ b/client/src/sass/include/_variables.scss
@@ -17,11 +17,11 @@ $grey-foreground-hover-color: #303030;
17$grey-button-outline-color: color.scale($grey-foreground-color, $alpha: -95%); 17$grey-button-outline-color: color.scale($grey-foreground-color, $alpha: -95%);
18 18
19$main-color: hsl(24, 90%, 50%); 19$main-color: hsl(24, 90%, 50%);
20$main-color-lighter: lighten($main-color, 10%); 20$main-color-lighter: color.adjust($main-color, $lightness: 10%);
21$main-color-lightest: lighten($main-color, 40%); 21$main-color-lightest: color.adjust($main-color, $lightness: 40%);
22$main-color-very-light: #fff5eb; 22$main-color-very-light: #fff5eb;
23 23
24$main-hover-color: lighten($main-color, 5%); 24$main-hover-color: color.adjust($main-color, $lightness: 5%);
25$main-background-hover-color: #e9ecef; 25$main-background-hover-color: #e9ecef;
26 26
27$support-button: inherit; 27$support-button: inherit;