2023-02-04 21:33:27 +00:00
|
|
|
{{- $themevariants := slice | append (.Site.Params.themeVariant | default "auto") -}}
|
|
|
|
{{- $themevariantsauto := slice | append (.Site.Params.themeVariantAuto | default slice) -}}
|
|
|
|
{{- $i := 0 -}}
|
|
|
|
{{- if eq (int (len $themevariantsauto)) 0 -}}
|
|
|
|
{{- range $themevariants -}}
|
|
|
|
{{- $i = add $i 1 -}}
|
|
|
|
{{- if ne . "auto" -}}
|
|
|
|
{{- $themevariantsauto = $themevariantsauto | append . -}}
|
|
|
|
{{- break -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- if eq (int (len $themevariantsauto)) 0 -}}
|
|
|
|
{{- $themevariantsauto = $themevariantsauto | append "relearn-light" -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- if eq (int (len $themevariantsauto)) 1 -}}
|
|
|
|
{{- $poppedthemevariants := last (sub (len $themevariants) $i) $themevariants -}}
|
|
|
|
{{- range $poppedthemevariants -}}
|
|
|
|
{{- if ne . "auto" -}}
|
|
|
|
{{- $themevariantsauto = $themevariantsauto | append . -}}
|
|
|
|
{{- break -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- if eq (int (len $themevariantsauto)) 1 -}}
|
|
|
|
{{- $themevariantsauto = $themevariantsauto | append "relearn-dark" -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- $themevariantsauto = ($themevariantsauto | first 2) -}}
|
|
|
|
{{- with index $themevariantsauto 0 -}}
|
2023-02-04 22:28:57 +00:00
|
|
|
{{- if site.IsServer -}}
|
2023-02-10 17:38:27 +00:00
|
|
|
@import "{{(printf "css/theme-%s.css" .) | relURL}}" screen and (prefers-color-scheme: light);
|
2023-02-04 22:28:57 +00:00
|
|
|
{{- else -}}
|
2023-02-10 17:38:27 +00:00
|
|
|
@import "{{(printf "theme-%s.css" .)}}" screen and (prefers-color-scheme: light);
|
2023-02-04 22:28:57 +00:00
|
|
|
{{- end -}}
|
2023-02-04 21:33:27 +00:00
|
|
|
{{- end -}}
|
2023-02-04 22:28:57 +00:00
|
|
|
{{- with index $themevariantsauto 1 -}}
|
|
|
|
{{- if site.IsServer }}
|
2023-02-04 21:33:27 +00:00
|
|
|
@import "{{(printf "css/theme-%s.css" .) | relURL}}" screen and (prefers-color-scheme: dark);
|
2023-02-04 22:28:57 +00:00
|
|
|
{{- else }}
|
|
|
|
@import "{{(printf "theme-%s.css" .)}}" screen and (prefers-color-scheme: dark);
|
|
|
|
{{- end -}}
|
2023-02-04 21:33:27 +00:00
|
|
|
{{- end -}}
|