-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyColors.py
More file actions
26 lines (21 loc) · 783 Bytes
/
MyColors.py
File metadata and controls
26 lines (21 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# TODO: change these to saner names
# R G B
BLACK = ( 0, 0, 0)
DARK_GRAY = ( 63, 63, 63)
GRAY = (127, 127, 127)
WHITE = (255, 255, 255)
BRIGHT_RED = (255, 0, 0)
RED = (127, 0, 0)
BRIGHT_YELLOW = (255, 255, 0)
YELLOW = (127, 127, 0)
BRIGHT_ORANGE = (255, 127, 0)
ORANGE = (127, 63, 0)
BRIGHT_GREEN = ( 0, 255, 0)
GREEN = ( 0, 127, 0)
BRIGHT_BLUE = ( 0, 0, 255)
BLUE = ( 0, 0, 127)
BRIGHT_PURPLE = (255, 0, 255)
PURPLE = (127, 0, 127)
CYAN = ( 0, 255, 255)
NAVY_BLUE = ( 63, 63, 127)
ALL = (BLACK, DARK_GRAY, GRAY, WHITE, BRIGHT_RED, RED, BRIGHT_GREEN, GREEN, BRIGHT_BLUE, BLUE, YELLOW, PURPLE, CYAN, NAVY_BLUE, ORANGE)