{{/* typography.css Eryn Wells vim: set sw=2 sts=2: */}} {{- $fontSizeBase := 1 -}} {{- $fontSizeUnit := "rem" -}} {{- $fontSizeFactor := 1.200 -}} {{- $scale := partial "size_scale.html" . -}} :root { {{- range $scale -}} {{ $value := mul $fontSizeBase (math.Pow $fontSizeFactor .Value) }} --font-size-{{ .Name }}: {{ printf "%.3f" $value }}{{ $fontSizeUnit }}; {{- end }} } {{ range $scale }} .font-size-{{ .Name }} { font-size: var(--font-size-{{ .Name }}); } {{- end }}