変数に渡したい引数を受け入れる mixin があります。
@mixin my_mixin($arg) {
background-color: $state-#{$arg}-text;
}
現在、SASS では変数名の補間はできません。これについて議論する問題は次のとおりですhttps://github.com/nex3/sass/issues/626
ただし、プレースホルダーの補間を使用できます。
%my-dark-styles {
background-color: #000;
}
%my-white-styles {
background-color: #FFF;
}
@mixin my_mixin($arg) {
@extend %my-#{$arg}-styles;
}
.header {
@include my_mixin("dark");
}
.footer {
@include my_mixin("white");
}
これは次のようにコンパイルされます。
.header {
background-color: #000; }
.footer {
background-color: #FFF; }
Sass 3.3以降、マップも使用できます http://blog.sass-lang.com/posts/184094-sass-33-is-released
次に例を示します。
$state-light-text : #FFFFFF;
$state-dark-text : #000000;
$color-map: ( //create a array to support the two colors light and dark
light: $state-light-text,
dark: $state-dark-text
);
@each $color-key, $color-var in $color-map {
.myclass--#{$color-key} { //will generate .myclass--light .myclass--dark
background-color: $color-var; // equal $state-light-text or $state-dark-text
}
}
次のようにコンパイルされます。
.myclass--light {
background-color: #FFFFFF;
}
.myclass--dark {
background-color: #000000;
}