intro to npm and sass

week 3 Kyle Dharam

// Define a color variable
$primary-color: #3498db;

// Use the color variable
body {
background-color: $primary-color;
color: #fff;
}

Using Sass variables allows you to maintain consistency in your stylesheets and makes it easier to update your colors. 

Leave a comment

Your email address will not be published. Required fields are marked *