chutney/colors.py

10 lines
201 B
Python
Raw Normal View History

2022-12-30 16:16:48 -05:00
BLACK = [0, 0, 0 ]
WHITE = [255, 255, 255]
GRAY = [50, 50, 50 ]
RED = [255, 0, 0 ]
ORANGE = [255, 64, 0 ]
PINK = [255, 0, 64 ]
GREEN = [0, 255, 0 ]
BLUE = [0, 64, 128]
2022-12-25 14:23:31 -05:00