Why is Safari on my computer rendering all of the colors -- not just for images -- incorrectly?

Posted by richardhenry on Super User See other posts from Super User or by richardhenry
Published on 2010-03-21T01:15:06Z Indexed on 2010/03/21 1:21 UTC
Read the original article Hit count: 357

Filed under:
|
|
|
|

I’m not just talking about image color profile issues; every single color that the browser renders is incorrect. It’s like it’s in it’s own color space (or something!).

Screenshot: http://drp.ly/DJk1O (Opera, Safari, Chrome, Firefox)

Spot the odd one out? Open this up in Photoshop or similar and try using the eyedropper to select the colour. Safari renders the same hex color completely differently. That color is set using a background-color declaration in CSS, so it should be identical in all four of those browsers.

Here’s the HTML I was using:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">

<html lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>untitled</title>

    <style type="text/css">
      body { background-color: #114742; }
    </style>

</head>
<body>

</body>
</html>

Literally every website I’m viewing with my install of Safari is displaying colors incorrectly. The blue of the bar on Facebook is slightly less rich.

This doesn’t occur on any other Macs I’ve tried. Any idea what’s happened to my Safari install?

© Super User or respective owner

Related posts about safari

Related posts about web-browser