How can I change all button colors to match on Sense theme?

Hi, I am using Sense theme right now. My problem is the buttons are of different colors. I want to make them all the same. Please help me do that. Thank you so much.

I’m Richard Nguyen - CRO Expert at PageFly - Free Landing Page Builder.

There will be 2 way, one is : change the color and background in theme customization : Screenshot by Lightshot
2 is : you can use this code into your theme css ( base.css ) file for example :

button {
color: black !important;
background: green !important;
}

Hope this can help you solve the issue

Best regards,

Richard

Hi @orange1989
If you want to use the same style for all of the button on your store
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css

button,
.button--primary,
.button--secondary {
color: white;
background-color: red;
}