how to use css variables in scss code example

Example 1: SCSS variables

$font-stack:    Helvetica, sans-serif;
$primary-color: #333;

body {
  font: 100% $font-stack;
  color: $primary-color;
}

Example 2: scss variables

$base-color: #c6538c;

Example 3: variables scss

// SCSS variables

$darkcolor: #605C4D;
$large: 350px;

section{
	background-color: $darkcolor;
  	height: $large;
}

Example 4: how to make a scss variable

$variableName = item

$gray = #404040

body{
	background:$gray; 
}

Example 5: scss variables

$variable: 1;

Tags:

Misc Example