How to highlight or change the border color of the color swatches/section when selected?

Can someone help me on how to highlight or change the border color of these color swatches/section when selected?

https://memaknits.com/products/sailboat-footie-beanie?variant=42040794808493

@Litos

@KetanKumar

@GemPages

Add this into your css, should take care of it for you:

.swatch input[type="radio"]:checked + label span {
    border: 1px solid black;
}

Thanks