I have a widget in plugin that will display a list of items <li> and I'd like to add one color to those items as option (color picker)...
The question here, do I throw that color as a:
<style>.color {color:#fff;}</style>
Or add it inline to each item:
<li style="color#fff;"></li>
How would you do that if this is your plugin? I'm talking about performance/Google score here.
Thanks...