Does Anyone know How to Toggle the Size Color Once the User Select a Size?

I want to change the size box to black and font white once the user select a size. Does anyone know how to do it for symmetry theme? This is my website https://stelleworld.com/collections/women-yoga-studio/products/softluxe-leggings

Thanks

Hi @momo12345 ,

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

label.opt-label:focus {
    background: black;
    color: white;
    border-radius: 5px;
    transform: scale(1.1);
}

Here is the result:

Please let me know if it works!

Best,

Daisy