scss declare variable number code example
Example 1: how to make a scss variable
$variableName = item
$gray = #404040
body{
background:$gray;
}
Example 2: scss variables
$variable: 1;
$variableName = item
$gray = #404040
body{
background:$gray;
}
$variable: 1;