how to use color variables in scss code example
Example 1: scss variables
$base-color: #c6538c;
Example 2: how to make a scss variable
$variableName = item
$gray = #404040
body{
background:$gray;
}
$base-color: #c6538c;
$variableName = item
$gray = #404040
body{
background:$gray;
}