module documentation

color.py

The color module defines the Color class and some popular Color objects.

Class Color A Color object models an RGB color.
Constant BLACK Undocumented
Constant BLUE Undocumented
Constant BOOK_BLUE Undocumented
Constant BOOK_LIGHT_BLUE Undocumented
Constant BOOK_RED Undocumented
Constant CYAN Undocumented
Constant DARK_BLUE Undocumented
Constant DARK_GRAY Undocumented
Constant DARK_GREEN Undocumented
Constant DARK_RED Undocumented
Constant GRAY Undocumented
Constant GREEN Undocumented
Constant LIGHT_GRAY Undocumented
Constant MAGENTA Undocumented
Constant ORANGE Undocumented
Constant PINK Undocumented
Constant RED Undocumented
Constant VIOLET Undocumented
Constant WHITE Undocumented
Constant YELLOW Undocumented
Function _main For testing:
BLACK =

Undocumented

Value
Color(0, 0, 0)
BLUE =

Undocumented

Value
Color(0, 0, 255)
BOOK_BLUE =

Undocumented

Value
Color(9, 90, 166)
BOOK_LIGHT_BLUE =

Undocumented

Value
Color(103, 198, 243)
BOOK_RED =

Undocumented

Value
Color(150, 35, 31)
CYAN =

Undocumented

Value
Color(0, 255, 255)
DARK_BLUE =

Undocumented

Value
Color(0, 0, 128)
DARK_GRAY =

Undocumented

Value
Color(64, 64, 64)
DARK_GREEN =

Undocumented

Value
Color(0, 128, 0)
DARK_RED =

Undocumented

Value
Color(128, 0, 0)
GRAY =

Undocumented

Value
Color(128, 128, 128)
GREEN =

Undocumented

Value
Color(0, 255, 0)
LIGHT_GRAY =

Undocumented

Value
Color(192, 192, 192)
MAGENTA =

Undocumented

Value
Color(255, 0, 255)
ORANGE =

Undocumented

Value
Color(255, 200, 0)
PINK =

Undocumented

Value
Color(255, 175, 175)
RED =

Undocumented

Value
Color(255, 0, 0)
VIOLET =

Undocumented

Value
Color(238, 130, 238)
WHITE =

Undocumented

Value
Color(255, 255, 255)
YELLOW =

Undocumented

Value
Color(255, 255, 0)
def _main():

For testing: