Changing colour of add to cart button on dawn theme

I have just added dawn theme to my store. I wanted to ask does any one know how to change the add to cart button background colour from white to yellow. thankyou in advance.

Hi @paule3 , go to edit code > assets > section-main-product.css and add this:

.product-form__submit {
    background-color: yellow; 
    margin-bottom: 1rem;
    --border-offset: none;
}

I’ve used default yellow, but you can change that with colour you’d like to use.