SCSS Compiler
@mixin theme-colors($light-theme: true) { @if $light-theme { background-color: white; color: black; } @else { background-color: black; color: white; } } .banner { @include theme-colors($light-theme: true); body.dark & { @include theme-colors($light-theme: false); } }
OUTPUT
×

Save as Private