HB allows adding custom styles and overriding the Bootstrap default SCSS variables.
Create the following file to add custom styles.
1/*! purgecss start ignore */
2
3.greeting {
4 color: green;
5}
6
7/*! purgecss end ignore */
To customize the SCSS variables, you need to create the following file.
1$primary: indigo;
Available SCSS variables can be found at the docs and source code.