No specific class for dark mode

Would this accomplish what you need? this would need to be added to color_definitions.scss

@if #{schemeType()} == dark {
    body {
        background: red;
    }
} @else {
     body {
        background: blue;
    } 
}

A class does seem like it would be useful though, we can probably add one.

4 Likes