I need three skins that only have different colors
How can I create them so that the default file restructuring is applied automatically to other files?
<div class="test">
Test
</div>
defaultVariables.scss:
$background: #f00;
default.scss:
@import "defaultVariables.scss";
.test{
background: $background;
}
default.css:
.test{
background: #f00;
}
darkVariables.scss:
$background: #000;
dark.scss:
@import "default.scss";
@import "darkVariables.scss";
dark.css: Expected output -> background: #000;
.test{
background: #f00;
}
lightVariables.scss:
$background: #fff;
light.scss:
@import "default.scss";
@import "light.scss";
light.css: Expected output -> background: #fff;
.test{
background: #f00;
}