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.




