Hello, can anyone help me with changing the border color around the color swatches to white? The current theme is Berlin and we are using the dark theme/black background. You can’t see the black color swatches and hard to see other darker colors. I’d like to change this globally; as we have products on the homepage and also the product page itself.
I’ve tried adding the following into the custom css section and it didn’t change anything
.color-swatch {
--swatch-bg: white;
background-color: var(--swatch-bg);
width: 100px; /* Adjust the width as needed */
height: 100px; /* Adjust the height as needed */
border: 1px solid #000; /* Add a border for better visibility */
/* Add any other styles you want for your color swatch */
}
I also tried this from someone else’s question and changed the color for ours, still nothing
.swatch input[type="radio"]:checked + label span {
border: 1px solid white;
}
I also tried using this answer from someone else but couldn’t find that file in the code editor https://community.shopify.com/c/shopify-design/color-swatches/m-p/1844705
Thank you in advance!