В той же корневой папке, что и ваши файлы начальной загрузки scss, создайте файл main.scss. Вы можете называть это как хотите: основной, сайт, пользовательский и т. Д.
/* main.scss */
/* import the necessary Bootstrap files */
@import "_functions.scss";
@import "_variables.scss";
/* make changes to the !default Bootstrap variables */
$body-color: #6D2077; //this is the text color
$body-bg: #F2F5F7; //this is the background color
$input-focus-border-color: #6D2077;
// Typography
//$font-size-base: 12px; // this changes the font-size throughout bootstrap
//$font-family-sans-serif: "Raleway", sans-serif;
//$font-size-base: 1rem;
//$line-height-base: 1.2;
/* here you can change the default colors, for example, text-danger. */
$theme-colors: ( "primary": purple, "danger": orange );
/* finally, import Bootstrap to set the changes! */
@import "bootstrap.scss";
Используйте компилятор Scss для преобразования кода main.scss в main.css.
Ссылка на файл main.css из вашего кода.