Product tiles not changing color, want to assign color scheme

Website: hayatigoods.com

Pw: uflaw

My old brand colors are that dark red and gold colors you see in the product tiles. I’d like to change them to match my new color schemes: the lighter red and pink. But for some reason i’m not able to see where i can update the color scheme of the actual tiles. It’s not pulling up as an option. I’m wondering if I edited the code to manually change the colors of the tile + text, but I can’t find the dark red hex code in the theme or base files… the dark red color is #720909.

Where is it pulling the dark red and yellow? How can I change the color scheme of the product tiles to a preset color scheme? If I can’t do that, can someone please help me with code to change the colors? I’d like the background to be this pink (#F990A5) and this red (#B42126)

Thanks so much!!

Hi @yasmineb ,

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

.card-wrapper.product-card-wrapper > .card.card--card {
    background: #F990A5 !important;
}
.card-wrapper.product-card-wrapper > .card.card--card .card__information * {
    color: #B42126 !important;
}

Here is the result:

Please let me know if it works!

Best,

Daisy