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?

enter image description here

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

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -