Change Colors In scss
If you want to change variables(colors) go to the _variables.scss
file(available in the path src/sass/bootstrap/_variables.scss
).
It has the following Structure:
$brand-primary: #329cff !default;
$brand-success: #5aca82 !default;
$brand-info: #007bb8 !default;
$brand-warning: #fcb410 !default;
$brand-danger: #f86a67 !default;
After changing the variables run the command gulp
or gulp sass
Last updated
Was this helpful?