vote up 19 vote down star
3

Since the vast majority of monitors are 16-bit color or more, including mobile devices, does it make sense to even consider Web Safe Colors when choosing color schemes? Or is it something that ought to be relegated to history as a piece of trivia?


For those of you that don't know what web safe colors are:

developed at a time when many computer displays were only capable of displaying 256 colors. A set of colors was needed that could be shown without dithering on 256-color displays; the number 216 was chosen partly because computer operating systems customarily reserved sixteen to twenty colors for their own use; it was also selected because it allows exactly six shades each of red, green, and blue (6 × 6 × 6 = 216).

The list of colors is often presented as if it has special properties that render them immune to dithering. In fact, on 256-color displays applications can set a palette of any selection of colors that they choose, dithering the rest. These colors were chosen specifically because they matched the palettes selected by the then leading browser applications.

flag

80% accept rate
2  
Interesting it seems to be so far in the past that a lot of the readers didn't quite get the point of the question. – Kevin Peterson Jun 24 at 22:03
1  
When we did Windows 3.1 games, we had to set the palette up to allow all those system colors. It was a similar problem. I wonder how many SO participants are too young to remember windows 3.1 :-) – Nosredna Jun 25 at 15:10

8 Answers

vote up 21 vote down check

For me web safe color palette is no longer primary concern. Optimize for the largest target audience.

According to w3schools only 1% of their site visitors in January 2009 had 256 color displays, 95% of users had 24 or 32 bit.

I found similar numbers from a business app site that I look after:

32-bit  79.01%  

24-bit  15.64%  

16-bit  5.27%   

8-bit   0.08%
link|flag
2  
Best answer because it references real data – adolf garlic Jun 25 at 7:21
1  
It also depends on your target audience. For most people, this is probably not an issue. For a site catering to a tech-savvy crowd, probably even less so. I guess it's possible that there is a website out there that caters to a demographic that is statistically less likely to have modern equipment. – Beska Sep 1 at 17:18
vote up 3 vote down

In my opinion, its history.

link|flag
1  
+1 for being right. – Mike Cooper Jun 24 at 21:34
vote up 16 vote down

I don't think web safe colors are relevant any more. To me, a much bigger problem for smartphones are all the fixed-width 960-pixel wide web pages.

link|flag
vote up 1 vote down

Web safe colors are pretty much not a problem anymore unless you are dealing with consumers that will have legacy (think > 10 year old) video display equipment.

link|flag
It takes an amazingly old monitor to cause problems. Video cards are a more common limitation of colour depth. – David Dorward Jun 24 at 21:37
I've seen people go to 16-bit depth for the sake of a higher frame rate, but I don't see people go to 256-colors anymore. – Nosredna Jun 24 at 21:38
David - Thanks for the update - Fixed – Brian Jun 24 at 21:39
vote up 3 vote down

It depends what you mean by web safe colours.

In terms of 16bit colour it's probably not worth worrying about. However Colours do not appear the same across devices. This can lead to all sorts of problems particularly if a designers gamma settings are different to your particular monitor set up.

So you still need to test your design across multiple set ups.

link|flag
vote up 5 vote down

For those of us (like me) that didn't know exactly what web safe colors are, they were

developed at a time when many computer displays were only capable of displaying 256 colors. A set of colors was needed that could be shown without dithering on 256-color displays; the number 216 was chosen partly because computer operating systems customarily reserved sixteen to twenty colors for their own use; it was also selected because it allows exactly six shades each of red, green, and blue (6 × 6 × 6 = 216).

The list of colors is often presented as if it has special properties that render them immune to dithering. In fact, on 256-color displays applications can set a palette of any selection of colors that they choose, dithering the rest. These colors were chosen specifically because they matched the palettes selected by the then leading browser applications.

It's hard to imagine any of this applying to today's modern displays, since almost nobody runs their display in 256 colors anymore (unless perhaps they are playing an old version of Leisure Suit Larry).

link|flag
@Robert - I hadn't realized people wouldn't know what that was. I grabbed your reference and grafted it into the question. – LFSR Consulting Jun 24 at 21:44
I knew what they were, I had just never gotten around to finding out exactly why they exist, and I hadn't considered them important in my current web development, an admittedly naive position. – Robert Harvey Jun 24 at 21:47
vote up 0 vote down

Yes, it's definitely a thing of the past. Place its importance right next to your marquee tags.

link|flag
vote up 3 vote down

I think the most important thing when choosing a colour palette is keeping in mind colour-blindness. There are a few different types that I know of, but the main thing is making sure that you have enough contrast between colours.

For example green text on a red background might be easier for some to read, but very difficult or maybe impossible for others (5-10% of males!), especially if the values of the colours are close.

link|flag
+1- Excellent Point – LFSR Consulting Aug 18 at 20:33

Your Answer

Get an OpenID
or

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