Colour codes

T

Tibpower

Where can I found the colourcodes? I want to know the
colour code of BLACK!!

Thank you very much.
 
J

JDR

The hex code for black is: #000000 (RGB is 0,0,0)

You can get any hex code or RGB in FrontPage:

Open a page type some text and then format the color to
what you want. Go to code view and you will see the hex
code.

JDR
****************
 
K

Kevin Spencer

And just a bit of additional information about hex color codes which you may
find helpful. As JDR said, the hex code for any color is the "#" character
followed by six hexadecimal digits. The six digits correspond to values of
red, green, and blue in that order, and, as stated before, are hexadecimal.
This means that they may be numbers or the letters "A,B,C,D,E,F" - the
digits of the hexadecimal numbering system. The hexadecimal numbering system
has 16 digits, so letters are used for the numbers 10 - 15. Each 2-digit
sequence in the six denotes a color. The first 2 are red, the second, green,
and the third blue. Using 2 digits, one can create a number from 0 - 255.
So, for example, if you wanted to create a color blended from 0 red, 255
green, and 0 blue (pure green) you would use #00FF00. White would be
#FFFFFF, and Black would be #000000.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Top