JSFiddle - React, Tailwind, and code Playground
by swfour
HTML
<h1>Normal</h1>
<img src='http://socialtalent.co/wp-content/uploads/blog-content/so-logo.png' />
<h1>Green</h1>
<img class='green' src='http://socialtalent.co/wp-content/uploads/blog-content/so-logo.png' />
CSS
img {
width:200px;
}
.green {
-webkit-filter: hue-rotate(90deg);
filter: hue-rotate(90deg);
}