| FIG wrote
Ok - so how do I find out what #8da4d3 color is? Do these numbers and letters stand for anything. I would like to create a different shade of green than just the regular green. So I guess I need to know how to change a color I like into the number sceme above??
|
The #8da4d3 notation is a Hexidecimal value representing the colors Red, Blue, and Green (That particular number is some shade of bluish-grey). The first two letters are for the Red value, the second two letters are for the Green value, and the last two are for the Blue Value. Each two characters represent a value from 0 to 255, in Hexidecimal format, giving you a total palette of 16777216 possible colors.
For example:
#000000 = Black
#FFFFFF = White
#FF0000 = Red
#00FF00 = Green
#0000FF = Blue
#FFFF00 = Yellow
#800080 = Purple
Etc...
Some of the more common colors (like the ones I listed) have names associated with them, so you can just type in the name of the color instead of remember the Hexidecimal values. Others, you will probably need to use a webpage design program that has a "Color Picker" just so you can figure out the exact hue you need.
Hope this helps...