
* 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
27 lines
997 B
SCSS
27 lines
997 B
SCSS
@mixin global-variables() {
|
|
|
|
/* Colors */
|
|
--wp--preset--color--primary: #404040;
|
|
--wp--preset--color--primary-hover: #f25f70;
|
|
--wp--preset--color--secondary: #f25f70;
|
|
--wp--preset--color--secondary-hover: #4f4f4f;
|
|
--wp--preset--color--foreground: #444;
|
|
--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: #fafafa;
|
|
--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: #ffdce0;
|
|
--wp--preset--color--alert-success: #8bc34a;
|
|
--wp--preset--color--alert-info: #03a9f4;
|
|
--wp--preset--color--alert-warning: #ffc107;
|
|
--wp--preset--color--alert-error: #f25f70;
|
|
--wp--preset--color--black: black;
|
|
--wp--preset--color--white: white;
|
|
|
|
}
|