My current theme's success button is green, but I want to change it to yellow. How can I achieve this?
In the _variables.scss
file, the following lines are present:
$btn-success-color: $btn-default-color !default;
$btn-success-bg: $brand-success !default;
$btn-success-border: $btn-success-bg !default;
To make the change, I added these lines to my custom file style.scss
:
$btn-success-color: #000 !default;
$btn-success-bg: #FFD700 !default;
$btn-success-border: #FFD700 !default;
Despite making these adjustments and compiling my theme again, the success button remains green. It seems like something is not working as expected.