How to Change Color in Dawn Theme 15.3.0

Hello everyone,

I’m using the Dawn theme version 15.3.0 for my Shopify store. I want to change the color of the “Add to Cart” button, but I’m stuck.

When I try to find the color scheme settings in the theme editor, I get this message:
“Unable to display color schemes. Schemes must be defined in settings_data and settings_schema.”

I have checked the theme settings but can’t find where to modify the button color.
Is this a known issue?
Do I need to add something to the theme’s settings_schema.json file or apply custom CSS?

Any advice or guidance would be much appreciated!

Thanks in advance.

1 Like

Hey @LeBrinooo

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. What color do you wanna change it to? Your cooperation would be greatly appreciated.

Best Regards,
Moeed

Herllo @LeBrinooo

Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.

.button, .button-label, .shopify-challenge__button, .customer button {
background-color: pink !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Hello @LeBrinooo ,

Navigate to Online Store > Themes > click on Edit code.
Locate and open the theme.css or base.css file. Scroll to the bottom and add the following CSS code:

button#ProductSubmitButton-template--24209809867046__main {
    background: burlywood; /* Desired color*/
    color: white; /* Desired color */
}

Thanks!

Could you please share your store URL and password [if applicable] so that I can take a look and provide you with a solution code.

Looking forward to hearing back from you.

Thanks