Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

_light.scss 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. $dialogErrorText: #344563;
  52. /**
  53. * Inlay colors
  54. **/
  55. $inlayColorBg: lighten($defaultBackground, 20%);
  56. $inlayBorderColor: lighten($auiDialogContentBg, 10%);
  57. $inlayIconBg: #000;
  58. $inlayIconColor: #fff;
  59. $inlayFilmstripOnlyColor: #474747;
  60. $inlayFilmstripOnlyBg: #fff;
  61. // Main controls
  62. $placeHolderColor: #a7a7a7;
  63. $readOnlyInputColor: #a7a7a7;
  64. $defaultDarkSelectionColor: #ccc;
  65. $buttonFontWeight: 400;
  66. $labelFontWeight: 400;
  67. $hintFontSize: em(13, 14);
  68. $linkFontColor: #3572b0;
  69. $linkHoverFontColor: darken(#3572b0, 10%);
  70. $dropdownColor: #333;
  71. $errorColor: #c61600;
  72. // Feedback colors
  73. $feedbackCancelFontColor: #333;
  74. // Popover colors
  75. $popoverBg: #000;
  76. $popoverFontColor: #ffffff;
  77. $popupMenuSelectedItemBackground: rgba(256, 256, 256, .2);
  78. // Toolbar
  79. $secondaryToolbarBg: rgba(0, 0, 0, 0.5);
  80. // TOFIX: Once moved to react rename to match the side panel class name.
  81. $sideToolbarContainerBg: rgba(0, 0, 0, 0.75);
  82. $toolbarBackground: rgba(0, 0, 0, 0.5);
  83. $toolbarBadgeBackground: #165ECC;
  84. $toolbarBadgeColor: #FFFFFF;
  85. $toolbarButtonColor: #FFFFFF;
  86. $toolbarSelectBackground: rgba(0, 0, 0, .6);
  87. $toolbarTitleColor: #FFFFFF;
  88. $toolbarToggleBackground: #12499C;
  89. /**
  90. * Forms
  91. */
  92. //dropdown
  93. $selectFontColor: $controlColor;
  94. $selectBg: $controlBackground;
  95. $selectActiveBg: darken($controlBackground, 5%);
  96. $selectActiveItemBg: darken($controlBackground, 20%);