sass to css command code example

Example 1: sass to scss

# You can do it with SASS itself 
# Nevermind these malware infested sites below
sass-convert style.sass style.scss

Example 2: Sass Introduction

/* define variables for the primary colors */
$primary_1: #a2b9bc;
$primary_2: #b2ad7f;
$primary_3: #878f99;

/* use the variables */
.main-header {
  background-color: $primary_1;
}

.menu-left {
  background-color: $primary_2;
}

.menu-right {
  background-color: $primary_3;
}