@if $enable-dark-mode {
    @include color-mode(dark) {

        // It seems this is not included by default ?
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .h1,
        .h2,
        .h3,
        .h4,
        .h5,
        .h6 {
            color: $body-color-dark;
        }
    }
}