astroid-framework
astroid-framework copied to clipboard
change button text color
What's the problem with the text color of the buttons? In the bootstrap, the primary button's text color is white, not black. Why are the colors redefined in the astroid? How to make it white?
Primary button in Astroid:
Primary button in Bootstarp:
@SerGun78 I’m not sure why Astroid buttons doesn't follow exactly the Bootstrap button scheme?
To change it, I’m afraid you will have to add custom css to change it to white (for the Primary button)
.btn-primary { color:white; }
@sonvnn 💡 I suggest an enhancement for Astroid; Button design is one of the most important features to get a professional uniform-looking website. — It would be great if Astroid had an override “Buttons” section to help Web Builders take complete control of that process without having to struggle to override Bootstrap and Astroid base settings and learn CSS.
I put a complete typography page on my Astroid demo. Maybe it can help for the styling? http://joom4-astro.graf-test.ca/typography
• In this case, the “Primary Button” text color seem to come from a Bootstrap css variable
--bs-btn-color: #000;
as close as possible to the bootstrap preset profile "Grape" color scheme!