vote up 3 vote down star

I'm having issues with color matching css background colors with colors in images on the same html page. What gives?

flag

80% accept rate

6 Answers

vote up 7 vote down check

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.

link|flag
1  
Hey, almost as good as posting it myself! Thanks for the credit. – Mark Ransom Sep 30 '08 at 20:03
vote up 0 vote down

Three possibilities spring to mind:

  • check that your monitor colour depth is set to 32- or 24-bit, not 16-bit
  • check that the image isn't being assigned a palette (such as the web-safe palette). This might be the case for a .gif or 8-bit .png image.
  • check for .png gamma correction issues in IE - see other posts for details

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.

link|flag
vote up -1 vote down

Probably the browser your testing, I've had a lot of trouble with ie 6.

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

What image editing program are you using? I found this article about Photoshop color profiles. There can also be issues with PNG gamma correction.

link|flag
vote up 1 vote down

Could be due to the browser's colour management.

link|flag

Your Answer

Get an OpenID
or

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