You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_light.scss 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /**
  2. * Base
  3. */
  4. $baseLight: #FFFFFF;
  5. /**
  6. * Controls
  7. */
  8. $controlBackground: $baseLight;
  9. $controlColor: #333333;
  10. $sliderTrackBackground: #474747;
  11. $sliderThumbBackground: #3572b0;
  12. /**
  13. * Buttons
  14. */
  15. $buttonBackground: #f5f5f5;
  16. $buttonHoverBackground: #e9e9e9;
  17. $buttonBorder: #ccc;
  18. $buttonHoverBorder: #999;
  19. $buttonColor: #333;
  20. $buttonLightBackground: #f5f5f5;
  21. $buttonLightHoverBackground: #e9e9e9;
  22. $buttonLightBorder: #ccc;
  23. $buttonLightHoverBorder: #999;
  24. $buttonLinkBackground: transparent;
  25. $buttonLinkColor: #0090e8;
  26. $primaryButtonBackground: #3572b0;
  27. $primaryButtonHoverBackground: #2a67a5;
  28. $primaryButtonColor: $baseLight;
  29. $primaryButtonFontWeight: 400;
  30. $buttonShadowColor: #192d4f;
  31. $overlayButtonBg: #0074E0;
  32. /**
  33. * Color variables
  34. **/
  35. $defaultBackground: #474747;
  36. $filmstripOnlyOverlayBg: #000;
  37. $reloadProgressBarBg: #0074E0;
  38. /**
  39. * Connection indicator
  40. **/
  41. $downloadConnectionIconColor: #4abd04;
  42. $uploadConnectionIconColor: #ffa800;
  43. /**
  44. * Dialog colors
  45. **/
  46. $auiDialogColor: #333;
  47. $auiDialogBg: #f5f5f5;
  48. $auiDialogContentBg: $baseLight;
  49. $auiBorderColor: #ccc;
  50. $dialogTitleFontWeight: 400;
  51. /**
  52. * Inlay colors
  53. **/
  54. $inlayColorBg: lighten($defaultBackground, 20%);
  55. $inlayBorderColor: lighten($auiDialogContentBg, 10%);
  56. $inlayIconBg: #000;
  57. $inlayIconColor: #fff;
  58. $inlayFilmstripOnlyColor: #474747;
  59. $inlayFilmstripOnlyBg: #fff;
  60. // Main controls
  61. $inputBackground: $controlBackground;
  62. $inputBorderColor: #ccc;
  63. $inputColor: $controlColor;
  64. $placeHolderColor: #a7a7a7;
  65. $readOnlyInputColor: #a7a7a7;
  66. $defaultDarkSelectionColor: #ccc;
  67. $buttonFontWeight: 400;
  68. $labelFontWeight: 400;
  69. $hintFontSize: em(13, 14);
  70. $linkFontColor: #3572b0;
  71. $linkHoverFontColor: darken(#3572b0, 10%);
  72. $dropdownColor: #333;
  73. $errorColor: #c61600;
  74. // Feedback colors
  75. $feedbackCancelFontColor: #333;
  76. // Popover colors
  77. $popoverBg: #000;
  78. $popoverFontColor: #ffffff;
  79. $popupMenuSelectedItemBackground: rgba(256, 256, 256, .2);
  80. // Toolbar
  81. $splitterColor: #ccc;
  82. /**
  83. * Forms
  84. */
  85. //dropdown
  86. $selectFontColor: $controlColor;
  87. $selectBg: $controlBackground;
  88. $selectActiveBg: darken($controlBackground, 5%);
  89. $selectActiveItemBg: darken($controlBackground, 20%);