How can I change button color in the Dawn theme?

Hi! I’m having trouble changing this specific button to a background color #324158 and text color #FFFFFF.

The specific button can be found in the product pages in the apparel section under MERCH.

The website is https://thirstyrhino.myshopify.com/

and password is

Show More

skeipe

Thank you in advance!

Hi @thirstyrhino ,

Please follow the instructions below.

  1. In your Admin store, click Online store > Themes
  2. Go to the theme you want to edit, click Actions > Edit code
  3. In your Asset folder, open the base.css and add the code below
.rich-text__blocks .button.button--secondary {
    background: #324158;
    color: #fff;
}

It worked, thank you!