-
|
I am trying to add new colors to theme. I followed the step in the documentation. // Create your own map
$custom-colors: (
"custom-color": #900
);
// Merge the maps
$theme-colors: map-merge($theme-colors, $custom-colors);but i still miss some variants and features for my custom colors that are present for primary, secondary, etc... for example: .bg-custom /* exist */
.text-custom /* exist */
.text-bb-custom /* exist */
.bg-custom-subtle /* do not exist */
.text-custom-emphasis /* do not exist */How to make so that my custom colors have all the same variants and features as default color (primary, secondary, etc...) ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hello! I’m using this approach. I haven’t checked this specific question in v6 yet, but in v5 I used the code below to create a custom color theme for specific projects |
Beta Was this translation helpful? Give feedback.
That allow to modify current theme colors but my goal is to add more theme colors so that i have:
I found what i was searching for a few hours ago in the documentation.