]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/sass/include/_variables.scss
Add external login buttons
[github/Chocobozzz/PeerTube.git] / client / src / sass / include / _variables.scss
index c7b205b110b1e08f691da6f857fc1cd40ec0c9d0..46f1e99f7f8bc46ecc03ac409e7fa1baecf1740a 100644 (file)
@@ -1,3 +1,5 @@
+@import '_bootstrap-variables';
+
 $small-view: 800px;
 $mobile-view: 500px;
 
@@ -10,9 +12,18 @@ $grey-background-color: #E5E5E5;
 $grey-background-hover-color: #EFEFEF;
 $grey-foreground-color: #585858;
 $grey-foreground-hover-color: #303030;
+$grey-button-outline-color: scale-color($grey-foreground-color, $alpha: -95%);
+
+// Palette
+$main-color: hsl(24, 90%, 50%);
+$main-hover-color: lighten($main-color, 5%);
+$main-color-lighter: lighten($main-color, 10%);
+$main-color-lightest: lighten($main-color, 40%);
+$secondary-color: hsl(187, 77, 34);
+//
 
-$orange-color: #F1680D;
-$orange-hover-color: #F97D46;
+$support-button: inherit;
+$support-button-heart: #e83e8c;
 
 $bg-color: #fff;
 $fg-color: #000;
@@ -42,11 +53,10 @@ $sub-menu-color: #F7F7F7;
 $footer-height: 30px;
 $footer-margin: 30px;
 
-$footer-border-color: $header-border-color;
-
 $separator-border-color: rgba(0, 0, 0, 0.10);
 
 $video-miniature-width: 238px;
+$video-miniature-margin-bottom: 30px;
 $video-thumbnail-height: 122px;
 $video-thumbnail-width: 223px;
 $video-thumbnail-ratio: $video-thumbnail-width / $video-thumbnail-height;
@@ -56,7 +66,14 @@ $theater-bottom-space: 115px;
 $input-background-color: $bg-color;
 $input-placeholder-color: #898989;
 
+$textarea-background-color: $grey-background-hover-color;
+
 $sub-menu-margin-bottom: 30px;
+$sub-menu-margin-bottom-small-view: 10px;
+
+$activated-action-button-color: black;
+
+$focus-box-shadow-form: 0 0 0 .2rem;
 
 /*** map theme ***/
 
@@ -64,18 +81,53 @@ $sub-menu-margin-bottom: 30px;
 // to be warned of non-existing variables
 $variables: (
   --mainColor: var(--mainColor),
+  --mainColorLighter: var(--mainColorLighter),
+  --mainColorLightest: var(--mainColorLightest),
   --mainHoverColor: var(--mainHoverColor),
   --mainBackgroundColor: var(--mainBackgroundColor),
   --mainForegroundColor: var(--mainForegroundColor),
+  --secondaryColor: var(--secondaryColor),
+
   --menuBackgroundColor: var(--menuBackgroundColor),
   --menuForegroundColor: var(--menuForegroundColor),
   --submenuColor: var(--submenuColor),
-  --inputColor: var(--inputColor),
-  --inputPlaceholderColor: var(--inputPlaceholderColor)
-);
 
-/*** theme helper ***/
+  --inputBackgroundColor: var(--inputBackgroundColor),
+  --inputPlaceholderColor: var(--inputPlaceholderColor),
+
+  --textareaBackgroundColor: var(--textareaBackgroundColor),
+
+  --actionButtonColor: var(--actionButtonColor),
+  --supportButtonColor: var(--supportButtonColor),
+  --supportButtonBackgroundColor: var(--supportButtonBackgroundColor),
+  --supportButtonHeartColor: var(--supportButtonHeartColor),
+
+  --embedForegroundColor: var(--embedForegroundColor),
+  --embedBigPlayBackgroundColor: var(--embedBigPlayBackgroundColor)
+);
 
 @function var($variable) {
   @return map-get($variables, $variable);
 }
+
+/*** z-index groups ***/
+
+$zindex: (
+  miniature    :    10,
+  privacymsg   :    20,
+  typeahead    :    30,
+  header       :  1000,
+  menu         : 11000,
+  dropdown     : 12000,
+  popover      : 13000,
+  tooltip      : 14000,
+  loadbar      : 15000,
+  modal        : 16000,
+  help-popover : 17000,
+  notification : 18000,
+  hotkeys      : 19000
+);
+
+@function z($label) {
+  @return map-get($zindex, $label);
+}