Goal: change the color of product review stars (carousel section) to green. Initial attempt—editing theme.css by replacing .spr-icon color variable with fill: #006400—did not work.
Proposed fix targeted Judge.me star elements using CSS selector span.jdgm-star.jdgm–on { color: red; } placed near the end of theme.liquid/base.css.
First method (plain CSS at file bottom) did not take effect.
Working solution:
Insert the rule inside Liquid style tags in the theme: {% style %} span.jdgm-star.jdgm–on { color: red; } {% endstyle %}. This applied successfully, changing the star color (shown in screenshots). The color value can be adjusted as needed.
Outcome: issue resolved with inline CSS targeting the correct star class. Images were shared to demonstrate the result; they are illustrative, not required to understand the fix.