![]() |
||||||||||||||||||||||||||||||||||||||||||||||
|
Home
: HTML Text Colors Color Names and Hexcode Chart | Absolute Color Picker Tool HTML Text Colors
|
||||||||||||||||||||||||||||||||||||||||||||||
| Use Photoshop and Hypergurl to Pick Website Colour Scheme and Text Colors |
| Use a favorite image to help you pick website color combinations for your website or blog. Find out how by watching this video. |


If you do not have Photoshop, Absolute Color Picker is an excellent FREE Color Picker Tool. You can hold down your mouse over any color on your screen (in a image, on a website, over text...) and this tool will give you the hexcode for that color.
Watch the video above for a brief demonstration on how to use this color picker tool to choose website color combinations. Pretty cool!
NOTE: The primary goal of using a color picker tool like Photoshop or Absolute Color Picker is to extract a color from an image and determine its hexcode so you can:

BOTTOM LINE:Choose an image, pick a color from that image, then use it for site design and text colors. See header for final text colors chosen.
Use Standard Color Names To Define Website Colors
Sometimes you don't want to base your website and text colors on an image. Maybe you just want "a nice red" for a certain portion of text or for a border. In these situations, I use color names instead of hexcodes in the HTML code.
Sixteen color names are recognized as the best colors to use on web pages because of their universal acceptance among all browsers. They are:
| Aqua | Gray | Navy | Silver |
| Black | Green | Olive | Teal |
| Blue | Lime | Purple | White |
| Fuschia | Maroon | Red | Yellow |
If you use one of these 16 color names when coding your HTML text colors, you can be assured that all browsers will display the website and text color correctly.
Additionally, you may have heard about "Extended Color Names." These are similar to the color names above, but there are a lot more of them. Officially they are only supported by Internet Explorer, but in reality, they are supported by most browsers.
For a list of the standard and extended color names, you can click on the button below and print a table in PDF format for a handy Color Name reference guide. HTML text color code and color swatches are included in this table.
When you want a wider range of color choices, using hexadecimal color codes (aka hexcodes) allows you to choose from millions of different HTML text colors.
The code applies the RGB (red, green, blue) color system where the first two digits control red, the second two digits control green and the last two digits control blue. As a basic example, #ff0000 = bright red, #00ff00 = bright green, and #0000ff = bright blue.
I use the Hexhub at December.com for choosing hexcodes. I like the interface because there are 5 color categories at the top, like "Blues" or "Reds" so you only have to look at one color range at a time.
For hardcopy color references, I use Visibone's Browser Book and Kilochart Poster, both of which have a permanent place in my office. These handy references show color swatches and give the hexcode and RGB values for each making it easy to choose HTML text colors.
When coding your HTML documents, use either the color name (no spaces) or the hexcode for your chosen color. Some of the most common webpage elements where color names and hexcodes are used and the associated HTML are shown below.
If you have Adobe Reader, you can print this HTML table in PDF format along with a Quick Reference Guide of HTML text colors and their hexcodes.
| Webpage Element | Color Name HTML | Hexcode HTML |
| Table | <table bgcolor="Red"> | <table bgcolor="#FF0000"> |
| Text | <font color="Red">This text is Red</font> | <font color="#FF0000">This text is Red</font> |
| Paragraph Border | <p style="border-style: solid; border-width: 1px; border-color: Red; padding: 5px"> | <p style="border-style: solid; border-width: 1px; border-color: #FF0000; padding: 5px"> |
| Divider | <hr color="Red"> | <hr color="#FF0000"> |
Rather than change the text color itself, I like to highlight text for emphasis. I try to use this technique sparingly because overuse diminishes its effectiveness. Notice how I used yellow text highlighting above when explaining how I picked the HTML text colors for this site.
I chose hexcode #FFFF66 and this is what the HTML text color code looks like:
|
Code Example:
<span style="background-color: #FFFF66">This text is yellow highlighted</span> |
|
Browser View:
This text is yellow highlighted |
| How To Wrap Text Around Images | |
| Learn to Create a Free Website Template | |
| Free Keyword Analyzer & Excel Macros | |
| How to Create a Web Page Shadow |