Constants that define the colors using RGB values.
|
|
BLACK = [0, 0, 0]
Constant representing black color
|
|
|
BLUE = [0, 0, 1]
Constant representing blue color
|
|
|
BROWN = [0.543, 0.27, 0.0742]
Constant representing brown color
|
|
|
GREEN = [0, 1, 0]
Constant representing green color
|
|
|
GREY = [0.6602, 0.6602, 0.6602]
Constant representing grey color
|
|
|
ORANGE = [1, 0.2706, 0]
Constant representing orange color
|
|
|
PINK = [1, 0.0784, 0.4588]
Constant represnting pink color
|
|
|
PURPLE = [0.5412, 0.168, 0.8828]
Constant representing purple color
|
|
|
RED = [1, 0, 0]
Constant representing red color
|
|
|
WHITE = [1, 1, 1]
Constant representing white color
|
|
|
YELLOW = [1, 1, 0]
Constant representing yellow color
|