Welcome to mirror list, hosted at ThFree Co, Russian Federation.

style.sass « sass « assets - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05bf4c5a520b7e7719b8355e3d96559f6fedf117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ $themeStyle := .Site.Params.themeStyle | default "light" }}

{{ if eq $themeStyle "auto" }}
@import "light-variables"
@import "light-style"

@media (prefers-color-scheme: dark)
    @import "dark-variables"
    @import "dark-style"

{{ else }}
@import "{{ $themeStyle }}-variables"
@import "{{ $themeStyle }}-style"
{{ end }}

@import "fonts"
@import "base-variables"
@import "bulma-import"
@import "base"