how to change colour?

i want to change colour of theis size chart buttuon to red.. make it semi-bold

URL: https://groovystreet.in/products/multi-pockets-side-zipper-black-cargo-pants

Hello @Emiway
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
at the end of the file and save.

.block-swatch {
background: #f83a3a !important;
font-weight: 500;
}

rsult

If this was helpful, hit the like button and accept the solution.
Thanks

Hi @Emiway ,

To make this happen you need to add a small css code in your theme file. for that follow below steps,

From Shopify backend

  1. Online Store → Themes → “…” → Edit Code

  2. In Edit Code → “assets” directory → “theme.css” file.

  3. Open the theme.css file and add the following code at the end of the file:

.block-swatch {
background: red!important;
color: white!important;
font-weight: 600!important;
}
  1. Save the file and reload your website.

Result:

I hope this helps! If it does, please like it and mark it as a solution!
If you need further assistance, feel free to reach out!

Regards,
Sweans

i want to change size chart button which i have marked in image

i want to change size chart button which i have marked in image

Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
at the end of the file and save.

Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
at the end of the file and save.
.text-subdued {
    color: red !important;
	font-weight: 600;
}

result

Thanks

want only this size chart button to be red

where to use this?

Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
at the end of the file and save.

Hi @Emiway ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!