_variables.scss 2.3 KB

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