diff options
Diffstat (limited to 'assets/css')
-rw-r--r-- | assets/css/main.scss | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/assets/css/main.scss b/assets/css/main.scss new file mode 100644 index 0000000..112a9ef --- /dev/null +++ b/assets/css/main.scss @@ -0,0 +1,25 @@ +--- +# Only the main Sass file needs front matter (the dashes are enough) +--- + +// Default theme colors +$theme-colors: ( + spacegrey: #353535, + inkpurple: #543581, + aquablue: #00aaa0, + azureblue: #2863b1, + gracered: #a12a50, + aloegreen: #3d9e56, + rustbrown: #795548, +); + +$theme-name: "{{ site.theme_color }}"; +$theme-color: map-get($theme-colors, "spacegrey"); + +@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: '#353535' }}; +} + +@import "yat"; |