Write maintainable CSS with variables, nesting, mixins, modules, maps, and compiled output.
Lessons
Store numbers, strings, colors, booleans, lists, and maps.
Variable Data Types is easiest to learn by reading the example, changing it, and observing the result.
$count: 6; // number
$title: "Sass course"; // string
$brand: #4f46e5; // color
$is-dark: true; // boolean
$sizes: 4px, 8px, 16px; // list
$theme: (primary: #4f46e5, text: #1f2937); // mapPractice the Variable Data Types example in a small scratch file, then explain what changed and why.