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

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Restarting Supervisor and effect on FlaskSocketIO -

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