Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why do we have colour codes in HTML when we can just use their name to refer to them, as shown in the example below:

<html>
<body>
gghv ghvhbvhjb
<sub style="font-family:verdana;font-size:60%;color:green">
This is a paragraph with some text in it. This is a paragraph with some 
text in it.This is a paragraph with some text in it. This is a paragraph 
with some text in it.</sub>
i just thought, what the heck

</body>
</html>
share|improve this question
6  
What's the name for #f3221c? – j08691 Apr 13 '12 at 19:00
Don't know about you, but I'd prefer using more than these colors: w3.org/TR/css3-color/#svg-color – MetalFrog Apr 13 '12 at 19:01

7 Answers

up vote 3 down vote accepted

Because there is a limited amount of words you can use to describe a colour.

green: does this mean a light green or a dark green, what if you want a shade of green that is slightly darker than the last shade of green you just used?

Using hex codes gives you a lot more possibilities of colour combinations. and using the newer rgb() css function may yield even more, especially when using the rgba function.

share|improve this answer

There are only a few colors for which there are names. However, you can refer to 256^3 = 16777216 colors with color codes.

share|improve this answer
2  
Add in RGBA and it's 256^4! – ceejayoz Apr 13 '12 at 19:03
1  
If you count transparency as color... :D – thejh Apr 13 '12 at 20:18

What if I want the color #a15f3c? What name is that? The names are there to make it easy to get "common" colors.

share|improve this answer
3  
Duh! Thats light-chocolate. – Jeffery Khan Apr 13 '12 at 19:01
1  
There are 714 color names in /etc/X11/rgb.txt. Surely you can find something there. :-) – Paul Tomblin Apr 13 '12 at 19:02

Only a very small subset of the possible colors have names. Sure #ff0000 has a name, but what is the name of #ff0001?

share|improve this answer
1  
RedWithASlightHintOfPurple? ;) – Guffa Apr 13 '12 at 19:12

because it would be a pain to have to reference 16777216 different names for colours.

share|improve this answer

There are many ways of defining colors in HTML, and there aren't as many names to refer to colors as there are colors themselves.

share|improve this answer

You can select green using name but what if you want slightly green, little more dark green. Color code will give you that option to chose from. For example check this website to find how many colors you can chose :color code info and compare with the names you have for various colors in html.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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