css - change image existing color from one to another one -
i have calendar image want change color. dont have photoshop edit color. possible change color css?
i want apply color color: #26416c;
if it's image, you're limited editing image editor, or using experimental css technology using filter property:
img { -webkit-filter: hue-rotate(90deg); filter: hue-rotate(90deg); }
<img src="http://i.stack.imgur.com/v96i5.png" />
Comments
Post a Comment