I want to change all buttons color whose color is blue to red

No luck … didnt work for me although i have followed exactly your guide (except changing URLs).

do bench build after the changes are done so that the public/css .min is updated

1 Like

you should add !important in your css section, it worked for me

.btn-primary {
background-color: #ef5720 !important;
border-color: #ff4444 !important;
}

2 Likes