vote up 6 vote down star

rgb(255,255,255) notation has been available since CSS1. But #fffff seems to be vastly more popular.

Obviously it's slightly more compact. I know that hex is more closely related to the underlying bytes, and understand that there would be advantages in carrying out arithmetic on those values, but this isn't something you're going to do with CSS.

Colour values tend to be originated by designers (such as myself) who would never encounter hex notation anywhere else, and are much more familiar with the decimal notation which is the main way of specifying colour in the apps they use -- in fact I have met quite a few who don't realise how a given hex value breaks down into RGB components and assumed it didn't directly relate to the colour at all, like a Pantone colour system reference (eg PMS432).

So, any reason not to use decimal?

flag
Update: many thanks for responses. I don't think any compelling reason to use either is evident, and therefore have not marked an answer. But some interesting side points, particularly WCWedin's on [decimal being required for RGBA](stackoverflow.com/questions/1171422/…) – elliot100 Jul 25 at 15:49
Hmm, not sure what I'm doing wrong with Markdown's link syntax? – elliot100 Jul 25 at 15:59

9 Answers

vote up 1 vote down

no valid reason, other than personal preference.

link|flag
vote up 5 vote down

Hex values are easier to copy and paste from your favourite image editor.

RGB values are easier to manipulate with Javascript.

(My favourite Hex colour value is #EDEDED and a site we made for a client involved in motorsport had a background colour of #F1F1F1 :-)

Ed.

link|flag
vote up 0 vote down

Probably a touch of speed when the color is interpreted by a browser. Otherwise some people from design background may know how to compose colors from RGB components when they write code, and some others from programming background are probably more inclined to use HEX values.

link|flag
1  
I don't get the down vote.. rgb(255,255,255) is way longer than #fff. This is the touch of speed I was talking about. – Elzo Valugi Jul 24 at 20:23
vote up 3 vote down

Traditionally HTML has always used hex colours, so that has carried forward into CSS. Think <font color="#ffffff">

link|flag
vote up 3 vote down

Various things will accept a single hex value where they may have different ways of entering three decimal values. There's also the fact that it's always 6 characters (or 3, admittedly - plus the #) which makes it easier to scan down a list of them.

Just a couple of random thoughts to add to the mix...

link|flag
3  
Well, it's usually 6 characters. It can also be 3 characters. – tnyfst Jul 23 at 12:50
Ooh, good point. Will edit. – Jon Skeet Jul 23 at 12:59
vote up 1 vote down

The main reason is probably compactness, as you mentioned. #ffffff can even be further shortened to the #fff shorthand notation.

Another possible reason is that there's a perceived performance increase by saving the browser the trouble of converting the rgb notation.

link|flag
vote up 0 vote down

Maybe I've done HTML too long, but I find it easier to think in HEX values. A lot of the pre-defined colour palette for HTML maps neatly to HEX values. Using the shortened format also gives you automatic 'web-safe' colours, though this is not really an issue in the days of 32bit colour displays.

link|flag
The shortened format doesn't automatically give you web safe colors. You have to limit the component values to 0,3,6,9,C and F to get the 216 web safe colors. – Guffa Jul 23 at 13:09
vote up 0 vote down

CSS was invented by software developers, not designers. Software developers live and breathe hex. From my old C64 days, I can still read most hex numbers without thinking. A9, anyone?

link|flag
169 of course :) – Guffa Jul 23 at 13:10
Nope. LDA #x :) – Aaron Digulla Jul 24 at 8:08
vote up 3 vote down

It's worth noting that if you want to input an RGBA value, hex notation is not supported; i.e., you can't fake it with #FFFFFFff. As a matter of fact, the alpha value must be a number between 0.0 and 1.0, inclusive. (Check out this page for browser support -- as always, IE is leading the pack here. ;) )

HSL and HSLA color support -- which is very designer friendly -- is also provided with a similar syntax to the RGB() style. If a designer were to use both types of color values in the same stylesheet, they might opt for decimal values over hex codes for consistency.

link|flag
As RGBA becomes more widely used (it is quite useful), I expect a resurgence of usage of decimal notation. Good point! – cpharmston Jul 23 at 13:03
Yup, good point on RGBA. Not sure if designers will really use HSL values to specify colour values, although it's a intuitive model when used for colour pickers, colour adjustment filters, etc – elliot100 Jul 23 at 13:47
The nice thing about HSL is that you can easily make up matching color schemes on the fly and have a pretty good idea of what they'll look like before you even refresh the page. There's no need to open up Photoshop to pick out three shades of the same red. Even complimentary colors are easy to pick out; 120 degree rotations are trivial in RGB, but I'm not sure if 180 degrees can be calculated so readoily. – WCWedin Jul 23 at 20:53
Hmmm, I need to play around with HSL a bit more then... – elliot100 Jul 25 at 13:07

Your Answer

Get an OpenID
or

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