how to put all scss variables to css variable code example
Example: how to make a scss variable
$variableName = item
$gray = #404040
body{
background:$gray;
}
$variableName = item
$gray = #404040
body{
background:$gray;
}