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

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -