Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_light.scss 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. /**
  32. * Color variables
  33. **/
  34. $defaultBackground: #474747;
  35. /**
  36. * Connection indicator
  37. **/
  38. $downloadConnectionIconColor: #4abd04;
  39. $uploadConnectionIconColor: #ffa800;
  40. /**
  41. * Dialog colors
  42. **/
  43. $auiDialogColor: #333;
  44. $auiDialogBg: #f5f5f5;
  45. $auiDialogContentBg: $baseLight;
  46. $auiBorderColor: #ccc;
  47. $dialogTitleFontWeight: 400;
  48. /**
  49. * Inlay colors
  50. **/
  51. $inlayColorBg: lighten($defaultBackground, 20%);
  52. $inlayBorderColor: lighten($auiDialogContentBg, 10%);
  53. // Main controls
  54. $inputBackground: $controlBackground;
  55. $inputBorderColor: #ccc;
  56. $inputColor: $controlColor;
  57. $placeHolderColor: #a7a7a7;
  58. $readOnlyInputColor: #a7a7a7;
  59. $defaultDarkSelectionColor: #ccc;
  60. $buttonFontWeight: 400;
  61. $labelFontWeight: 400;
  62. $hintFontSize: em(13, 14);
  63. $linkFontColor: #3572b0;
  64. $linkHoverFontColor: darken(#3572b0, 10%);
  65. $dropdownColor: #333;
  66. $errorColor: #c61600;
  67. // Feedback colors
  68. $feedbackCancelFontColor: #333;
  69. // Popover colors
  70. $popoverBg: #000;
  71. $popoverFontColor: #ffffff;
  72. $popupMenuSelectedItemBackground: rgba(256, 256, 256, .2);
  73. // Toolbar
  74. $splitterColor: #ccc;
  75. /**
  76. * Forms
  77. */
  78. //dropdown
  79. $selectFontColor: $controlColor;
  80. $selectBg: $controlBackground;
  81. $selectActiveBg: darken($controlBackground, 5%);
  82. $selectActiveItemBg: darken($controlBackground, 20%);