variables in scss mixin code example
Example 1: how to make a scss variable
$variableName = item
$gray = #404040
body{
background:$gray;
}
Example 2: scss variables mixins
// styles.scss
@use 'base';
.inverse {
background-color: base.$primary-color;
color: white;
}