Customizing Bootstrap with Sass

Use Sass variables to customize Bootstrap styles before compiling.

Installation

npm install bootstrap

Import and Override

// custom.scss
$primary: #ff5733;
@import "bootstrap";

Then compile using a Sass compiler like sass.

← PrevNext →