Skip to main content
Best Answer

Changing the Star icon color (Rating)

  • 11 July 2024
  • 2 replies
  • 34 views

Hi CSS experts,

Is there a way to change the color of the Star icon?

Thanks for your help!

 

2 replies

Userlevel 5
Badge +1

This was a fun one:

g[data-icon-name="star-filled"] {
fill: #ff0000;
}

I guess it’s SVG-based, so instead of e.g. color or background-color, you use fill. And if you want to add an outline, you’d use stroke instead.

Thank you so much, @Ian ! Appreciate your help!

Reply