Reputation: 16906
I'm having issues with color matching css background colors with colors in images on the same html page. What gives?
Upvotes: 5
Views: 3690
Reputation: 34650
What image editing program are you using? I found this article about Photoshop color profiles. There can also be issues with PNG gamma correction.
Upvotes: 4
Reputation: 10531
It might be a color profile issue.
For instance, if the image is a JPEG and has a color profile and your browser doesn't support displaying images in the color profiles that they specify, the colors of the image itself will render differently in your browser. In this situation, if you checked the color of the image in Photoshop (color profile aware) and then applied that color in your CSS and viewed the page in a browser that is not color profile aware, it would look different.
Upvotes: 1
Reputation: 545875
I'm guessing that you use a PNG image? This is a gamma correction “feature”. Mark Ransom has posted a useful text about this.
Notice that the pngcrush
solution listed somewhere hasn't worked for me.
Upvotes: 8
Reputation: 619
Probably the browser your testing, I've had a lot of trouble with ie 6.
Upvotes: -1
Reputation: 10680
Three possibilities spring to mind:
A workaround that I have used in the distant past is to set the background colour by repeating a small image, instead of setting it in the HTML. This kind of trick was useful in the days of web-safe palettes and so on, but less useful now.
Upvotes: 0