More on Colors

All colors used within the graph are comprised of three components which represent the Red, Green and Blue values. Unlike html which uses hexadecimal to represent each component, the java language uses a decimal range from 0 to 255 for each component. Each value should be separated by a , character and can range from 0 to 255.

Below are some of the common colors and the corresponding value that should be entered,

Color names and RGB values
Black = "0,0,0" Green = "0,128,0"
Silver = "192,192,192" Lime = "0,255,0"
Gray = "128,128,128" Olive = "128,128,0"
White = "255,255,255" Yellow = "255,255,0"
Maroon = "128,0,0" Navy = "0,0,128"
Red = "255,0,0" Blue = "0,0,255"
Purple = "128,0,128" Teal = "0,128,128"
Fuchsia = "255,0,255" Aqua = "0,255,255"