
* Varia: add tertiary styles conditionally Varia is a parent theme and the tertiary styles are not defined. It effects all of its child themes such as stow. * create styles for tertiary blocks * add the styles conditionally so that child themes that has tertiary will get the classes * add tertiary color and background styling * Stow * Hever * Rockfield * Stratford * rebuild child themes with Varia changes
25 lines
998 B
SCSS
25 lines
998 B
SCSS
@mixin global-variables() {
|
|
|
|
/* Colors */
|
|
--wp--preset--color--primary: #2c313f;
|
|
--wp--preset--color--primary-hover: #3e69dc;
|
|
--wp--preset--color--secondary: #3e69dc;
|
|
--wp--preset--color--secondary-hover: #2c313f;
|
|
--wp--preset--color--foreground: #74767e;
|
|
--wp--preset--color--foreground-low-contrast: #767676;
|
|
--wp--preset--color--foreground-high-contrast: #111;
|
|
--wp--preset--color--background: #fff;
|
|
--wp--preset--color--background-low-contrast: #ddd;
|
|
--wp--preset--color--background-high-contrast: #f3f3f3;
|
|
--wp--preset--color--tertiary: #ddd;
|
|
--wp--preset--color--border: #ddd;
|
|
--wp--preset--color--border-low-contrast: #aaa;
|
|
--wp--preset--color--border-high-contrast: #fafafa;
|
|
--wp--preset--color--text-selection: #c6d5ff;
|
|
--wp--preset--color--alert-success: #4caf50;
|
|
--wp--preset--color--alert-info: #3e69dc;
|
|
--wp--preset--color--alert-warning: #ffc107;
|
|
--wp--preset--color--alert-error: #f44336;
|
|
--wp--preset--color--black: black;
|
|
--wp--preset--color--white: white;
|
|
}
|