Looking to customize the .btn-primary
text color.
I attempted to modify the background color in _variables.scss
by adding the following line:
$primary: #a1c1b6;
However, I was unable to change the text color despite trying various options.
// not working
$primary-color: #fff;
$primary-btn-color: #fff;
$primary-text-color: #fff;
$primary-btn-text-color: #fff;
I also observed that the text color automatically adjusted when the background changed.
Is there a way to manually set the text color to white or red, for example?