saguaros
Hi,
That "brand primary" only changes the color of buttons not the whole template !
take a look (in: t4_bs5_blank/scss/_variables.scss)
// scss-docs-start colors-map
$colors: (
**"blue": $blue,
"indigo": $indigo,
"purple": $purple,
"pink": $pink,
"red": $red,
"orange": $orange,
"yellow": $yellow,
"green": $green,
"teal": $teal,
"cyan": $cyan,
"white": $white,
"gray": $gray-600,
"gray-dark": $gray-800**
);
and this :
// scss-docs-start theme-color-variables
**$primary: $blue;**
$secondary: $gray-600;
$success: $green;
$info: $cyan;
$warning: $yellow;
$danger: $red;
$light: $gray-100;
$dark: $gray-900;
// scss-docs-end theme-color-variables
What am trying to do is pick a pre-defined primary color with only one variable like a real BS 5 template...
I also tried changing colors every where (palette included) however it's not cool to go over a lot of css files to do so, to finally get t4-palette-blue every where in the code with a different color !
Anyways it's BS5 but not fully implemented, i hope they will fix it in the upcoming version.
Thanks for your answer;
Cheers.