Sectioning
Heading Content
h1-6
scss
:is(h1, h2, h3, h4, h5, h6) {
@if $colors and map.get($colors, heading) {
@include coloring.set-colors("heading");
color: var(---clr-fg);
}
}
Section headings.
h#{$level}
scss
h#{$level} {
@if $colors and map.get($colors, heading-#{$level}) {
@include coloring.set-colors("heading-#{$level}", "heading");
}
}