
When a chip is selected on the product page, the option appears in the top left of the box, but some users would like to see some styling for the selected chip itself. Something like the image below:

Just figured out how to do it with css:
.product-form__chip-input:checked+span {
background-color: var(--color-text);
color: var(--color-bg);
}
