Hexidecimal codes are used for adding colors in HTML:
Page Backgrounds: <body bgcolor="#XXXXXX">
Text Colors: <font color="#XXXXXX">
Page-Wide Text Colors: <body text="#XXXXXX">
Page-Wide Link Colors: <body link="#XXXXXX" vlink="#XXXXXX" alink="#XXXXXX">
link is non-visited link color, vlink is already-visited link color,
and alink is the color a link turns while it is being clicked on
Each of the six digits in the hexadecimal code is broken into three
groups:
#XXxxxx - Red Color Value
#xxXXxx - Green Color Value
#xxxxXX - Blue Color Value
Each digit is a value from 0 to F.
The hexadecimal color system counts by 0 1 2 3 4 5 6 7 8 9 A B C D
E F,
with 0 being the null value, and F being the highest value.
There are 16.7 million different colors in the hexadecimal color system.
Obviously I cannot list them all.
But here are some colors that I have found useful.
Standard White (the background of this page) #FFFFFF
Standard Black (the text on this
page) #000000