Need to change colour of Buy It Now Button

Need to change background to black & text to while

Product url https://callmateindia.com/products/dx-15-power-bank-20000mah

@incognitomode

.dynamic-checkout__button--styled .shopify-payment-button__button, .dynamic-checkout__button--styled .shopify-payment-button__button span {
    color: #ffffff!important;
    background-color: black !important;
}

Add this code in theme-m.css and theme-d.css file

Do not have any theme-m.css and theme-d.css file

When I add this in theme.scss.liquid

Its showing an error

Hi @incognitomode ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss->paste below code at the bottom of the file:
.dynamic-checkout__button--styled button.shopify-payment-button__button {
    background: black !important;
    color: white !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

@incognitomode sorry for that can you try this code

  1. Go to Online Store-> Theme->Edit code
  2. Asset->/layout-d.min.css ->paste below code at the bottom of the file.
.dynamic-checkout__button--styled button.shopify-payment-button__button {
    background: #46464a !important;
    color: #fff !important;
}