There is a list of hexadecimal code of color which is used to set color in web designing. HTML colors make by using hexadecimal notations. All colors are making by using Red, Green, Blue. These are 3 primary colors.
Example: #000000 hexadecimal code for Black. First two zero represent red(00) next adjacent for green then blue. 00 is the least and FF is the most intense.
Here prepare a table of all colors name of color with hexadecimal color code.
Basic HTML Color Name and Hexadecimal Code
| HTML Color Codes Chart |
| S.N. |
Color Name |
Color Code |
Color |
| 1. |
Fuchsia |
#FF00FF |
|
| 2. |
Yellow |
#FFFF00 |
|
| 3. |
Lime |
#00FF00 |
|
| 4. |
Red |
#FF0000 |
|
| 5. |
Blue |
#0000FF |
|
| 6. |
DarkBlue |
#0000A0 |
|
| 7. |
Cyan |
#00FFFF |
|
| 8. |
Black |
#000000 |
|
| 9. |
LightBlue |
#ADD8E6 |
|
| 10. |
White |
#FFFFFF |
|
| 11. |
Purple |
#800080 |
|
| 12. |
Orange |
#FFA500 |
|
| 13. |
Olive |
#808000 |
|
| 14. |
Grey |
#808080 |
|
| 15. |
Silver |
#C0C0C0 |
|
| 16. |
Brown |
#A52A2A |
|
| 17. |
Maroon |
#800000 |
|
| 18. |
Deep Pink |
#F52887 |
|
| 19. |
YellowGreen |
#9ACD32 |
|
| 20. |
Green |
#008000 |
|
| HTML Color Codes Chart |
| S.N. |
Color Name |
Color Code |
Color |
| 21. |
Light Slate Blue |
#736AFF |
|
| 22. |
Chartreuse |
#7FFF00 |
|
| 23. |
DarkGray |
#A9A9A9 |
|
| 24. |
DarkSlateGray |
#2F4F4F |
|
| 25. |
DarkSalmon |
#E9967A |
|
| 26. |
Tan |
#D2B48C |
|
| 27. |
LightGreen |
#90EE90 |
|
| 28. |
SteelBlue |
#4682B4 |
|
| 29. |
Wheat |
#F5DEB3 |
|
| 30. |
SandyBrown |
#F4A460 |
|
| 31. |
Salmon |
#FA8072 |
|
| 32. |
SpringGreen |
#00FF7F |
|
| 33. |
Light Cyan |
#E0FFFF |
|
| 34. |
Violet |
#EE82EE |
|
| 35. |
MediumPurple |
#9370D8 |
|
| 36. |
Khaki |
#F0E68C |
|
| 37. |
DarkKhaki |
#BDB76B |
|
| 38. |
Dark GoldenRod |
#AF7817 |
|
| 39. |
Light Coral |
#E77471 |
|
| 40. |
Turquoise |
#43C6DB |
|
How to use color codes in HTML webpage
1. Set Green color for website background:
<body style=”background:#008000″>
2. Set Yellow color for font/text color using HTML color code:
<span style=”color:#FFFF00″>
3. Set table background color Red:
<table style=”background:#FF0000″>
Hope, you like this post.
Leave your response!