Write maintainable CSS with variables, nesting, mixins, modules, maps, and compiled output.
Lessons
Override Bootstrap variables and build a custom theme.
Customizing Bootstrap with Sass is easiest to learn by reading the example, changing it, and observing the result.
// custom.scss - override Bootstrap variables BEFORE importing
$primary: #6f42c1;
$border-radius: 0.75rem;
@import "bootstrap/scss/bootstrap";
// Build: npx sass custom.scss custom.cssPractice the Customizing Bootstrap with Sass example in a small scratch file, then explain what changed and why.