Hi,
I would like to dinamicaly design some elements on my website and ideally there would be a class that adds these values using the brand-primary, brand-secondary values.
For example:
.brand-primary-color {
color: whatever_is_selected_in_color_settings;
}
.brand-primary-background {
background: whatever_is_selected_in_color_settings;
}
.brand-primary-border-color {
border-color: whatever_is_selected_in_color_settings;
}
Or at least in Cornerstone, in the header for example:
$el {
color: $primary_color;
}
Is this possible?