How to set a color change to the selected slide

HELP!! how do you set a different color for the selected slide?

like this one in the photo:
Screen Shot 2022-05-18 at 2.04.40 AM

here’s the read only link:

https://preview.webflow.com/preview/cro-gurus?utm_medium=preview_link&utm_source=designer&utm_content=cro-gurus&preview=06eef9510cd6f4548de09ebf152dc40c&pageId=626925076b362b2176915ebd&workflow=preview

Hi @Harvey_Aru

Did you get this fixed?

HI @Harvey_Aru I presume you are talking about background color for active thumbnail. When you check your DOM you will see that when thumbnail is active class swiper-slide-thumb-active is added to element. So to give different background color to currently active thumbnail just add custom styling with color eg. set in mouseover animation. Done.

.swiper-slide-thumb-active{
	background: #your_color;
} 

Hope that solve your request