How can I change the color of all buttons on my website?

Hello everybody.
I’m trying to change the color of all the buttons and details in the store but without success.
My website address is www.ibarganha.com
I circled the details I want to change for better understanding.
Can anybody help me?

PS: There are other buttons and stuff on other pages that I also want to change.
I would like to turn all of them to the same color as the announcement bar at the top of the page.
Kind regards

Hi there! You can follow these steps:

  1. go to shopify admin

  2. go to online store

  3. click customize theme

  4. bottom right, click theme settings

  1. Click Colors

  1. Header Colors - “accent” is for the top header colors you want to change

  1. Product - “On Sale Discount” is the banner colors you want to change

8)Footer - “Accent” is the final button you want to change here:

1 Like

Hi @Brunossa

You can follow the @BaileyPaserk steps.

However, you can add the below CSS at the bottom of your theme.css under assets will also solve your problem.

body .search-bar__submit, 
body .product-label--on-sale, 
body .header__cart-count,
body .button--primary,
body .button--primary:hover,
body .button--primary::after {
	background: #003dff;
}
body .price--highlight,
body #shopify-section-1640785341a8cf70f5 .button {
	color: #003dff;
}
1 Like

Worked like a charm!
Many Thanks.

1 Like

That worked as well.
Much appreciated

1 Like