tags:

views:

117

answers:

5
+1  Q: 

web safe colours?

is it still relevant to consider these? i don't do much work on the graphics side of things, but recently i set the backgound colour of a webpage (using CSS) to the same background colour used within images on the page. #312F32. it looked fine on different machines in the office, but at home on my shinny new mac (and a few others since) there was definitely a noticable difference between the two.

can someone give me a web colour 101 reminder course? :>

+5  A: 

personally I feel that it's not really of that much of importance, since nowadays modern browsers can render colours properly. What is important is that your background image colour should be the same as the background colour.

different of colour between monitors might just be that the monitor settings are different. so you don't have to worry that much.

what's really important for web designs is that your design have to be appealing.

thephpdeveloper
A: 

thats what i thought, i guess my question is really why a browser/graphics driver wouldn't just show the wrong color for the page AND the image if it didn't support the colour in question. thanks for the link, ill have a read and see if that anwsers it :)

andrew
A: 

Easiest way to remember it for me: Multiples of 0x33 at each byte. E.g. 0x333333, 0x330099, 0xFFFFFF, etc.

Joey Adams
+2  A: 

is it still relevant to consider these?

No. To be honest there was never a truly ‘web-safe’ palette, in that many systems had different colour depths and palettes even in the days when a Windows machine running in 8-bit colour was the norm.

Today there's very little still running an 8-bit palette, and those things that do aren't necessarily using the same one.

it looked fine on different machines in the office, but at home on my shinny new mac (and a few others since) there was definitely a noticable difference between the two.

A shiny new Mac will definitely be running in full colour like everyone else, so it's not a palette problem.

Was the image a PNG? If so, you've probably got a gamma problem causing colour shifts on different platforms. PNGs for the web should be saved without a gAMA chunk to avoid this issue.

bobince
A: 
Paul Souders