Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In CSS, is there a standard way to colorize or apply a tint to a grayscale image?

I would like to create a grayscale image to show focus over an element, and allow the color of the focus to be configurable by colorizing the grayscale image.

Thanks

share|improve this question

2 Answers

up vote 5 down vote accepted

You could change the alpha and have a solid background color behind it.

share|improve this answer
This could work, however I was hoping to use an image gradient. – Steve May 11 '10 at 12:50
2  
Here is a link to a cross-browser css gradient webdesignerwall.com/tutorials/cross-browser-css-gradient – used2could May 11 '10 at 13:01

If you use a gradient with alpha-channel you can use absolute-positioning and put it on-top of your image. If you can't make a gradient with an alpha-channel then you can adjust the opacity of the overlay using CSS, but the effect isn't as good.

I used this for an mouseover area-selection for a map and it worked quite well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.