How to change colour of variant selection button?

How do i change the colour of these variant buttons?

https://thedirtyseahorse.com/products/zenith-overalls

Hi @msrwalsh , you can follow these steps:

Go to Themes → Edit Code

Find file section-main-product.css . Find this CSS code:

.product-form__input input[type=radio]:checked+label {
    background-color: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
}

And fix it into:

.product-form__input input[type=radio]:checked+label {
    background-color: #cdaa72;
    color: #fff;
    border-color: #91826a;
}

Here’s the result:

Amazing! thank you.