print #handle, "color COLOR"
This command sets the pen's color to be COLOR

Here is a list of valid colors (in alphabetical order):
black, blue, brown, buttonface, cyan, darkblue, darkcyan, darkgray, darkgreen, darkpink, darkred, green, lightgray, palegray, pink, red, white, yellow

Palegray and Lightgray are different names for the same color.  Buttonface is the default background color currently set on a user's system, so it will vary according to the desktop color scheme.

print #handle, "color red(0-255)  green(0-255) blue(0-255)"

The second form of color specifies a  pure RGB color.  This only works with display modes greater than  256 colors.  To create a violet color for example, mix red and blue:

print #handle, "color 127 0 127"

