10 lines
150 B
Python
10 lines
150 B
Python
|
# Eryn Wells <eryn@erynwells.me>
|
||
|
|
||
|
'''
|
||
|
A bunch of colors.
|
||
|
'''
|
||
|
|
||
|
BLACK = (0, 0, 0)
|
||
|
WHITE = (255, 255, 255)
|
||
|
GREY10 = (26, 26, 26)
|
||
|
GREY50 = (128, 128, 128)
|