$colors: (
red: "red"
);
@each $key, $value in $colors {
$key: $value;
}
I want to be able to define a scss variable $red: "red";
, but it failed.
Or is there any way to destructure $colors
?
$colors: (
red: "red"
);
@each $key, $value in $colors {
$key: $value;
}
I want to be able to define a scss variable $red: "red";
, but it failed.
Or is there any way to destructure $colors
?