2016-10-19 17:34:20 +00:00
|
|
|
/**
|
|
|
|
* Base
|
|
|
|
*/
|
|
|
|
$baseLight: #FFFFFF;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Controls
|
|
|
|
*/
|
|
|
|
$controlBackground: $baseLight;
|
|
|
|
$controlColor: #333333;
|
2017-02-22 22:40:51 +00:00
|
|
|
$sliderTrackBackground: #474747;
|
|
|
|
$sliderThumbBackground: #3572b0;
|
2016-10-19 17:34:20 +00:00
|
|
|
|
2016-10-12 00:08:24 +00:00
|
|
|
/**
|
|
|
|
* Buttons
|
|
|
|
*/
|
2018-03-13 04:45:00 +00:00
|
|
|
$buttonBackground: #44A5FF;
|
|
|
|
$buttonHoverBackground: #2c4062;
|
|
|
|
$buttonBorder: transparent;
|
|
|
|
$buttonHoverBorder: transparent;
|
|
|
|
$buttonColor: #eceef1;
|
2016-10-12 00:08:24 +00:00
|
|
|
|
|
|
|
$buttonLightBackground: #f5f5f5;
|
|
|
|
$buttonLightHoverBackground: #e9e9e9;
|
|
|
|
$buttonLightBorder: #ccc;
|
|
|
|
$buttonLightHoverBorder: #999;
|
|
|
|
|
|
|
|
$buttonLinkBackground: transparent;
|
|
|
|
$buttonLinkColor: #0090e8;
|
|
|
|
|
|
|
|
$primaryButtonBackground: #3572b0;
|
|
|
|
$primaryButtonHoverBackground: #2a67a5;
|
2016-10-19 17:34:20 +00:00
|
|
|
$primaryButtonColor: $baseLight;
|
2016-10-12 00:08:24 +00:00
|
|
|
$primaryButtonFontWeight: 400;
|
|
|
|
|
|
|
|
$buttonShadowColor: #192d4f;
|
|
|
|
|
2017-03-09 00:16:53 +00:00
|
|
|
$overlayButtonBg: #0074E0;
|
|
|
|
|
2016-10-31 17:21:15 +00:00
|
|
|
/**
|
|
|
|
* Color variables
|
|
|
|
**/
|
|
|
|
$defaultBackground: #474747;
|
2017-04-10 17:59:44 +00:00
|
|
|
$filmstripOnlyOverlayBg: #000;
|
2017-03-09 00:16:53 +00:00
|
|
|
$reloadProgressBarBg: #0074E0;
|
2016-10-31 17:21:15 +00:00
|
|
|
|
2016-10-12 00:08:24 +00:00
|
|
|
/**
|
|
|
|
* Dialog colors
|
|
|
|
**/
|
2018-03-13 04:45:00 +00:00
|
|
|
$auiDialogColor: #eceef1;
|
|
|
|
$auiDialogBg: #253858;
|
|
|
|
$auiDialogContentBg: #344563;
|
|
|
|
$auiBorderColor: #253858;
|
2016-10-12 00:08:24 +00:00
|
|
|
$dialogTitleFontWeight: 400;
|
2017-06-14 18:41:22 +00:00
|
|
|
$dialogErrorText: #344563;
|
2016-10-12 00:08:24 +00:00
|
|
|
|
2016-11-15 14:37:09 +00:00
|
|
|
/**
|
|
|
|
* Inlay colors
|
|
|
|
**/
|
|
|
|
$inlayColorBg: lighten($defaultBackground, 20%);
|
2018-03-13 04:45:00 +00:00
|
|
|
$inlayBorderColor: lighten($baseLight, 10%);
|
2017-03-09 00:16:53 +00:00
|
|
|
$inlayIconBg: #000;
|
|
|
|
$inlayIconColor: #fff;
|
|
|
|
$inlayFilmstripOnlyColor: #474747;
|
|
|
|
$inlayFilmstripOnlyBg: #fff;
|
2016-11-15 14:37:09 +00:00
|
|
|
|
2016-10-12 00:08:24 +00:00
|
|
|
// Main controls
|
2016-10-18 16:57:38 +00:00
|
|
|
$placeHolderColor: #a7a7a7;
|
2016-10-18 19:27:16 +00:00
|
|
|
$readOnlyInputColor: #a7a7a7;
|
2016-10-12 00:08:24 +00:00
|
|
|
$defaultDarkSelectionColor: #ccc;
|
|
|
|
$buttonFontWeight: 400;
|
|
|
|
$labelFontWeight: 400;
|
|
|
|
$hintFontSize: em(13, 14);
|
|
|
|
$linkFontColor: #3572b0;
|
|
|
|
$linkHoverFontColor: darken(#3572b0, 10%);
|
2016-10-13 13:15:20 +00:00
|
|
|
$dropdownColor: #333;
|
2016-10-21 15:18:17 +00:00
|
|
|
$errorColor: #c61600;
|
2016-10-13 13:15:20 +00:00
|
|
|
|
2016-11-15 14:37:09 +00:00
|
|
|
// Feedback colors
|
|
|
|
$feedbackCancelFontColor: #333;
|
|
|
|
|
2016-10-13 13:15:20 +00:00
|
|
|
// Popover colors
|
2019-03-11 11:43:33 +00:00
|
|
|
$popoverBg: initial;
|
|
|
|
$popoverFontColor: #ffffff !important;
|
|
|
|
$popupMenuColor: #ffffff !important;
|
|
|
|
$popupMenuHoverColor: #ffffff !important;
|
|
|
|
$popupMenuHoverBackground: rgba(255, 255, 255, 0.1);
|
|
|
|
$popupSliderColor: #0376da;
|
2016-11-01 15:59:57 +00:00
|
|
|
|
|
|
|
// Toolbar
|
2017-07-21 19:45:04 +00:00
|
|
|
$secondaryToolbarBg: rgba(0, 0, 0, 0.5);
|
|
|
|
// TOFIX: Once moved to react rename to match the side panel class name.
|
|
|
|
$sideToolbarContainerBg: rgba(0, 0, 0, 0.75);
|
|
|
|
$toolbarBackground: rgba(0, 0, 0, 0.5);
|
|
|
|
$toolbarBadgeBackground: #165ECC;
|
|
|
|
$toolbarBadgeColor: #FFFFFF;
|
|
|
|
$toolbarButtonColor: #FFFFFF;
|
|
|
|
$toolbarSelectBackground: rgba(0, 0, 0, .6);
|
|
|
|
$toolbarTitleColor: #FFFFFF;
|
|
|
|
$toolbarToggleBackground: #12499C;
|
|
|
|
|
2016-11-10 16:48:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Forms
|
|
|
|
*/
|
|
|
|
//dropdown
|
2016-11-11 16:30:27 +00:00
|
|
|
$selectFontColor: $controlColor;
|
2016-11-10 16:48:34 +00:00
|
|
|
$selectBg: $controlBackground;
|
|
|
|
$selectActiveBg: darken($controlBackground, 5%);
|
2016-11-11 16:30:27 +00:00
|
|
|
$selectActiveItemBg: darken($controlBackground, 20%);
|
2017-10-06 16:14:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TODO: Replace by themed component.
|
|
|
|
*/
|
|
|
|
$videoQualityActive: #4C9AFF;
|