Is there a way to override variables in SCSS without mixins or functions? My setup looks like this:
Input:
$color: red !default;
selector {
color: $color;
}
$color: blue;
Output:
selector {
color: red;
}
I already tried to use !global
but this does not work either.
I am not sure, if this is even possible in SCSS without using mixins.