_variables.scss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // assign default value to all undefined variables
  2. // core variables
  3. $text-color: #fff !default;
  4. $base-color: #23282d !default;
  5. $icon-color: hsl( hue( $base-color ), 7%, 95% ) !default;
  6. $highlight-color: #0073aa !default;
  7. $notification-color: #d54e21 !default;
  8. // global
  9. $body-background: #f1f1f1 !default;
  10. $link: #0073aa !default;
  11. $link-focus: lighten( $link, 10% ) !default;
  12. $button-color: $highlight-color !default;
  13. $form-checked: $highlight-color !default;
  14. // admin menu & admin-bar
  15. $menu-text: $text-color !default;
  16. $menu-icon: $icon-color !default;
  17. $menu-background: $base-color !default;
  18. $menu-highlight-text: $text-color !default;
  19. $menu-highlight-icon: $text-color !default;
  20. $menu-highlight-background: $highlight-color !default;
  21. $menu-current-text: $menu-highlight-text !default;
  22. $menu-current-icon: $menu-highlight-icon !default;
  23. $menu-current-background: $menu-highlight-background !default;
  24. $menu-submenu-text: mix( $base-color, $text-color, 30% ) !default;
  25. $menu-submenu-background: darken( $base-color, 7% ) !default;
  26. $menu-submenu-background-alt: desaturate( lighten( $menu-background, 7% ), 7% ) !default;
  27. $menu-submenu-focus-text: $highlight-color !default;
  28. $menu-submenu-current-text: $text-color !default;
  29. $menu-bubble-text: $text-color !default;
  30. $menu-bubble-background: $notification-color !default;
  31. $menu-bubble-current-text: $text-color !default;
  32. $menu-bubble-current-background: $menu-submenu-background !default;
  33. $menu-collapse-text: $menu-icon !default;
  34. $menu-collapse-icon: $menu-icon !default;
  35. $menu-collapse-focus-text: $text-color !default;
  36. $menu-collapse-focus-icon: $menu-highlight-icon !default;
  37. $adminbar-avatar-frame: lighten( $menu-background, 7% ) !default;
  38. $adminbar-input-background: lighten( $menu-background, 7% ) !default;
  39. $adminbar-recovery-exit-text: $menu-bubble-text !default;
  40. $adminbar-recovery-exit-background: $menu-bubble-background !default;
  41. $adminbar-recovery-exit-background-alt: mix(black, $adminbar-recovery-exit-background, 10%) !default;
  42. $menu-customizer-text: mix( $base-color, $text-color, 40% ) !default;