saaa variables code example
Example 1: variables scss
// SCSS variables
$darkcolor: #605C4D;
$large: 350px;
section{
background-color: $darkcolor;
height: $large;
}
Example 2: how to make a scss variable
$variableName = item
$gray = #404040
body{
background:$gray;
}