Hi,
I just installed this color scheme.
There seems to be a problem with the coloring of variables when used for interpolation.
They are not colored white, but orange-red. (Screenshot.)
Could you tell me where to edit the color scheme?
Thx
Here is the code from the screenshot.
$webfont-provider: '//fonts.googleapis.com/css?family=' !default;
$webfont-family: 'Merriweather+Sans:400,300,300italic,400italic,700,700italic,800,800italic' !default;
@import url(#{$webfont-provider}#{$webfont-family});
%bg-dark {
background-color: #000;
}
%bg-white{
background-color: #FFF;
}
@mixin set-styles($arg) {
@extend %bg-#{$arg};
}
.header {
@include set-styles("dark");
}
