I am trying to add an extra color to my Bootstrap 5.2.3 project, but it's not generating the bg-* or text-* classes.
I tried using the Bootstrap 5.1 solutions found on GitHub, like these:
$starorange: #df711b;
$custom-theme-colors: (
"starorange": $starorange
);
$theme-colors: map-merge($theme-colors, $custom-theme-colors);
$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");
$utilities-colors: map-merge($utilities-colors, $theme-colors-rgb);
$utilities-text-colors: map-loop($utilities-colors, rgba-css-var, "$key", "text");
$utilities-bg-colors: map-loop($utilities-colors, rgba-css-var, "$key", "bg");
@import "bootstrap";
But using < div class = "bg-starorange" > text < / div > does absolutely nothing. The bg-starorange class is not being generated.
So I went to the Bootstrap 5.2.3 docs and read that for this version, it should just be:
@import "variables.scss";
$custom-colors: (
"purple": $purple
);
// Merge the maps
$theme-colors: map-merge($theme-colors, $custom-colors);
@import "~bootstrap/scss/bootstrap";
The purple var is coming from the variables.scss file which is imported earlier and just includes some colors, but no maps etc.
When I use bg-purple on a div, I dont see anything in the dev tools inspector, when I do a global search in the whole project for "bg-purple" nothing is found. What am I doing wrong?
If it doesn't work, I just manually add the custom parameters on the bootstrap.css file like this:
Now just edit the HEX and RGB numbers to match the color you're looking for.