Mobile app version of vmapp.org
Login or Join
Deb5748823

: Are "web-safe" colors still important? Years ago, it was always strongly recommended that web designers should only use web-safe colors. Have studies been done to see if this is still the case?

@Deb5748823

Posted in: #Color #WebSafe #WebsiteDesign

Years ago, it was always strongly recommended that web designers should only use web-safe colors.

Have studies been done to see if this is still the case? If so, what's the answer?

Does anyone know of or have a reference to a study or report that covers this?

10.06% popularity Vote Up Vote Down


Login to follow query

More posts by @Deb5748823

6 Comments

Sorted by latest first Latest Oldest Best

 

@Megan533

Roughly 99% of people use monitors/mobile phones with 24 bit or 32 bit display. Dithering won't occur with these (it can still occur with 16 bit display, but it's uncommon and simply causes trivially small longer loading times). So this is mostly not an issue in terms of dithering. However, there are different reasons why the web safe colors are useful.

They provide consistently differing and contrasting colors, which are useful to work with when it comes to color-blind audiences, as they'll have a better chance of telling a part the different colors compared to using most other pallets or just randomly deciding on whatever colors you think looks good.
The colors are all useful for CSS shorthand code, in other words coding colors with just 3 characters instead of 6 (e.g. #663399 can be #639 ).

10% popularity Vote Up Vote Down


 

@Alves566

Way back in the early nineties most graphics cards (including those on £20K SGI Indy 'graphics workstations') did not have enough memory to render hi-res, true-color images. The work around was to use 256 colours that worked with a look up table and dithering algorithms.

The 256 colours of the 'look up table' could be any of the 2^24 colours you get with a modern PC, however, some of these were reserved for the operating system to use. Typically 32-40 colours were used for window borders, menu text and other screen decoration leaving 216 colours for the application.

With PC applications on an 8 bit display each window/application could have its own color set, particularly with Unix workstations. This could lead to flashing of colours when going from one window to the next - the selected window would look good but the background windows could be a bit weird.

When the web came along with the Mosaic browser (and later Netscape) the browser had to work with the other applications, showing however many images the web designer included on the page. These could be automatically dithered down to the 216 (6 x 6 x 6) 'web safe' colours. Naturally the other page elements (e.g. 'H1 - H6') could also be dithered down to the 216 colours that the palette had available.

If one did not stick to the 216 'web safe colours' (that any browser could render) then the results were unpredictable, a subtle red might get rendered as an unsubtle red etc. As others in this thread have mentioned, 16 bit and true-colour came along for most PCs in the mid-nineties, making 'web safe' less of a problem. However, 16 bit screens used less bits for each colour rather than a look up table, as was the way with 8 bit colour. 5 bits for each of the red, green and blue components gave an approximation of true-colour, but was not really. A given RGB value, e.g. #ABCDEF would not be rendered exactly as #ABCDEF so 'web safe' still had some relevancy if you wanted colours to be the same from PC to PC.

10% popularity Vote Up Vote Down


 

@Phylliss782

One time web safe colours still apply is when using GIF images as they are limited to 256 colours. Of course those colours can be almost any set of colours you want, but there can only be 256 in 1 image.

10% popularity Vote Up Vote Down


 

@Sarah814

Short answer:

No.

Long answer:

The average user has a nice enough graphics card/monitor that "web-safe" is no longer an issue.

10% popularity Vote Up Vote Down


 

@Berumen635

Back when the internet (and computers) was new, screens didn't have the color support they currently have, we've got 24 or 32-bit colors now, where we used to have only 8-bit color.

Because some computers couldn't display certain colors (only 256 (2^8)), if a color that wasn't one of those web-safe ones was used, the computer would attempt to display the closest color to it (sometimes it was really off).

Now we don't have to worry, we've got screens that can display thousands or millions of colors, so the web-safe pallet is a bit outdated (fifteen years or so).

10% popularity Vote Up Vote Down


 

@Murray976

Mostly you have nothing to worry about. An extraordinary majority of visitors to a site will be able to support more than 256 colors these days.

If for some reason your userbase is likely to have a higher than normal proportion of members using systems from the early 90s, then you might want to consider it.. but in any typical scenario it's no longer an issue.

The w3schools browser display statistics shows that in january of 2010 0% of internet users were still at 256 colours

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme