# Only the main Sass file needs front matter (the dashes are enough)
// Default theme colors $theme-colors: (
"coolblack": #090a0b, "spacegrey": #353535, "snowwhite": #ffffff,
);
// Default brand colors $brand-colors: (
"orangered": #ff5100, "greatgold": #f2cb05, "greenblue": #389092,
);
$theme-name: “{{ site.theme_color }}”; $brand-name: “{{ site.brand_color }}”; $theme-color: map-get($theme-colors, “snowwhite”); $brand-color: map-get($brand-colors, “orangered”);
@if map-has-key($theme-colors, $theme-name) {
$theme-color: map-get($theme-colors, $theme-name);
} @else if str-index($theme-name, “#”) == 1 {
$theme-color: {{ site.theme_color | default: '#ffffff' }};
}
@if map-has-key($brand-colors, $brand-name) {
$brand-color: map-get($brand-colors, $brand-name);
} @else if str-index($brand-name, “#”) == 1 {
$brand-color: {{ site.brand_color | default: '#ff5100' }};
}
@import “yat”;