Skip to main content

Hi CSS experts,

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

Thanks for your help!

 

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