Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How come certain random strings produce various colors when entered as background colors in HTML? For example:

<body bgcolor="chucknorris"> test </body>

...produces a document with a red background across all browsers and platforms.

Interestingly, while chucknorri produces a red background as well, chucknorr produces a yellow background.

What's going on here?

share|improve this question
41  
jsfiddle.net/rBpVD – biziclop Nov 30 '11 at 21:53
26  
Interestingly: OprahWinfrey is blue, MrT is Black (obviously!) while BarackObama is a faded green color – Jon Egerton Nov 30 '11 at 21:56
52  
I was so sure you were crazy when I clicked this question. Now, I'm sure that the rest of the world is crazy. – jwiscarson Nov 30 '11 at 21:56
48  
Originally, it wasn't going to be part of HTML 1.1, but it inserted itself into the specifications after the first time Chuck Norris used a browser. The color is said to be modeled after the color of his beard. Fact: setting your background color to chucknorris will crash IE6, IE7, IE8, IE9, and versions of IE yet to be invented. It will also crash your computer and roundhouse kick you in the face. – slothario Feb 6 at 0:35
2  
I love the technical answers but we all know the real reason. Red is the color of death. And Chuck Norris represents death. And all browsers better know this. You'll notice it isn't a bright red, but a darker red that covers your screen. The color of blood. Plus, the color "roundhousekick" is blue. For the color of your face when Chuck Norris round house kicks you. – cbmeeks Feb 15 at 21:21
show 8 more comments

4 Answers

up vote 482 down vote accepted

It's a holdover from the Netscape days:

Missing digits are treated as 0[...]. An incorrect digit is simply interpreted as 0. For example the values #F0F0F0, F0F0F0, F0F0F, #FxFxFx and FxFxFx are all the same.

From this blog post, which covers it in great detail, including varying lengths of color values, etc.

If we apply the rules in turn from the blog post, we get the following:

  • Replace all non valid hexadecimal characters with 0's

chucknorris becomes c00c0000000

  • Pad out to the next total number of characters divisible by 3 (11 -> 12)

c00c 0000 0000

  • Split into three equal groups, with each component representing the corresponding colour component of an RGB colour:

RGB (c00c, 0000, 0000)

  • Truncate each of the arguments from the right down to 2 characters

Which gives the result

RGB (c0, 00, 00) = #C00000 or RGB(192, 0, 0)

Here's a JSFiddle demonstrating the bgcolor attribute in action, to produce this "amazing" colour swatch:

BGColor Swatch

This also answers the other part of the question; why does bgcolor="chucknorr" produce a yellow colour? Well, if we apply the rules, the string is:

c00c00000 => c00 c00 000 => c0 c0 00 [RGB(192, 192, 0)

Which gives a light yellow gold colour. As the string starts off as 9 characters, we keep the second C this time around hence it ends up in the final colour value.

I originally encountered this when someone pointed out you could do color="crap" and it, well, comes out brown.

share|improve this answer
63  
And "sick" green. Are we sure there isn't some greater plan here? – Jon Egerton Nov 30 '11 at 21:58
19  
sick = #00ck00... crap = #c0a000... MrT = #000000... chucknorris = #c00c0000000... chucknorr = #c00c00000... Ok that explain why does color are desaturated, but – Kraz Nov 30 '11 at 22:03
6  
I first encountered this when playing with HTML color attributes on Neopets a decade ago... imagine my childlike delight when entering the species of one of my pets as a color returned the very same color that pet was :) – BoltClock Feb 28 '12 at 20:31
8  
Oh man that programmer wrote a sloppy parser 15 years ago. Just actively ignoring error conditions is really garbage. – usr Sep 29 '12 at 10:25
26  
@usr: HTML is built around intentionally ignoring malformed input ;) – Kevin Ballard Feb 5 at 23:43
show 6 more comments

I'm sorry to disagree, but according to the rules for parsing a legacy color value posted by @Yuhong Bao, chucknorris DOES NOT equate to #CC0000, but rather to #C00000, a very similar but slightly different hue of red. I used the Firefox ColorZilla add-on to verify this.

The rules state:

  • make the string a length that is a multiple of 3 by adding 0s: chucknorris0
  • separate the string into 3 equal length strings: chuc knor ris0
  • truncate each string to 2 characters: ch kn ri
  • keep the hex values, and add 0's where necessary: C0 00 00

I was able to use these rules to correctly interpret the following strings:

  • LuckyCharms
  • Luck
  • LuckBeALady
  • LuckBeALadyTonight
  • GangnamStyle

Unfortunately I have not yet been able to determine why this doesn't seem to work for adamlevine which should be ADE0E0 but it's actually AD0E0E.

share|improve this answer
8  
I figured it out, I had misinterpreted some of the parsing instructions: "adamlevine" = "ada00e000e" = "ada00e000e00" = "ada0 0e00 0e00" = "ad 0e 0e" -- Perfect!! – Jeremy Goodell Oct 17 '12 at 18:11
2  
In case you're interested, I posted the 5-step algorithm as an UPDATE on a similar question I posted today: stackoverflow.com/questions/12939234/… – Jeremy Goodell Oct 17 '12 at 18:50
+1 for gangnam style – DarthVader May 9 at 5:52

Most browsers will simply ignore any NON-hex values in your color string, substituting non-hex digits with zeros.

ChuCknorris translates to c00c0000000. At this point, the browser will divide the string into three equal sections, indicating Red, Green and Blue values: c00c 0000 0000. Extra bits in each section will be ignored, which makes the final result #c00000 which is a reddish color.

Note, this does not apply to CSS color parsing, which follow the CSS standard.

<p><font color='chucknorris'>Redish</font></p>
<p><font color='#c00000'>Same as above</font></p>
<p><span style="color: chucknorris">Black</span></p>
share|improve this answer
This is not by design, if in any instance it does this, it's a bug in the browser. All the recent browsers will completely ignore the color property as an invalid color. – animuson Nov 29 '11 at 23:03
3  
Perhaps he will be so kind as to post this magical HTML that produces a Chuck Norris red across "all browsers and platforms." – Mike Christensen Nov 29 '11 at 23:22
1  
Invalid characters are not skipped, they are treated as 0. – phyzome Sep 28 '12 at 3:30
1  
@phyzome - You're right! ChuckNorris would actually be the same color as #c00c0000000. – Mike Christensen Sep 28 '12 at 3:34
17  
Actually wrong, chucknorris, according to the parsing rules, becomes "c00c0000000" and then becomes "c00c00000000" to make the length a multiple of 3, and then becomes "c00c 0000 0000" and then becomes "c0 00 00" as we truncate each of the three strings to two characters. So "chucknorris" == "#C00000". I verified this with the Firefox ColorZilla add on color selector. – Jeremy Goodell Oct 17 '12 at 18:15
show 4 more comments

The WHATWG HTML spec has the exact algorithm for parsing a legacy color value: http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#rules-for-parsing-a-legacy-color-value

The code Netscape Classic used for parsing color strings is open source: http://mxr.mozilla.org/classic/source/lib/layout/layimage.c#155

For example, notice that each character is parsed as a hex digit and then is shifted into a 32-bit integer without checking for overflow. Only eight hex digits fit into a 32-bit integer, which is why only the last 8 characters are considered. After parsing the hex digits into 32-bit integers, they are then truncated into 8-bit integers by dividing them by 16 until they fit into 8-bit, which is why leading zeros are ignored.

share|improve this answer

protected by BoltClock Feb 6 at 14:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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