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 1.8KB

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