chutney/colors.py

9 lines
169 B
Python
Raw Normal View History

2022-12-25 14:23:31 -05:00
BLACK = [0, 0, 0 ]
2022-12-26 19:37:50 -05:00
WHITE = [255, 255, 255]
GRAY = [50, 50, 50 ]
2022-12-25 14:23:31 -05:00
RED = [255, 0, 0 ]
PINK = [255, 0, 64 ]
GREEN = [0, 255, 0 ]
BLUE = [0, 64, 128]