Hi!
Is there any way to fill the selected variant option on the Impulse theme? I’ll add a before and after image as examples. Kind regards!
A user seeks to customize variant option buttons in Shopify’s Impulse theme, specifically wanting to fill the selected variant with a background color and change border colors from gray to black.
Solution provided:
theme.css file (Assets folder) to style selected variant optionsStatus: Resolved - user confirmed the initial solution works and received additional code for the border customization.
Hi!
Is there any way to fill the selected variant option on the Impulse theme? I’ll add a before and after image as examples. Kind regards!
Hi,
Please go to Edit code > Assets > theme.css file and add the code below at the bottom of the file.
.variant-input-wrap input[type=radio]:checked+label {
background: #000;
color: #fff;
}
Hope it helps.
Works great, appreciate it!! Do you also happen to know how I could get the outside lines of the variant picker buttons to be black instead of gray? (refer to image)
Kind regards

The code is as below.
label.variant__button-label {
border: 1px solid #000;
}
You may change the thickness (currently 1px) to your needs.
You may