How to change the color of the "add to cart" button, when the dynamic button is enabled?

How can you change the color of the “Add to Cart” button, when the dynamic checkout button is enabled on the product pages?

@Jkwilson83 - it needs css, can you please share your page link?

https://everydayoutdoors.com/collections/gun-metal-barrel-band/products/copy-of-gunmetal-silver-platinum-5mm

@Jkwilson83 - what color do you want? want to change text color or background color?

Just the background color.

I want the color to be #8c8a7a

@Jkwilson83 - please add this css to the end of your theme.css file and check , will be like screenshot

.add-to-cart.btn--secondary {background-color: #8c8a7a;}

I copied and pasted the code in my theme.css.liquid in my “Assets” folder and I don’t see a change. I am currently using the 2.0 Impulse theme, does that make a difference?

@Jkwilson83 - i checked the code, you have written correctly but please check again, you need to put bracket ( } ) for css above it , right now it is

.template-giftcard .logo{
    color:#58686f;
  
.add-to-cart.btn--secondary {background-color: #8c8a7a;}

this should be

.template-giftcard .logo{color:#58686f;}
  
.add-to-cart.btn--secondary {background-color: #8c8a7a;}

Thank you so much!!!