CSS Variables
Cornerstone introduces a new way of handling styles made possible through CSS custom properties.
:root {
--color-primary: {{ settings.color_primary }};
--color-offset: #faf9f7;
--font-default: {{ settings.font_family }};
--font-heading: {{ settings.heading_font_family }};
}background: var(--color-offset);Last updated