forked from PatDuJour/Donald-Bren-Solid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolors.py
More file actions
executable file
·26 lines (25 loc) · 879 Bytes
/
colors.py
File metadata and controls
executable file
·26 lines (25 loc) · 879 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
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)
YELLOW = (255, 255, 0)
PINK = (255,192,203)
GRAY = (50,50,50) #for the HUD
LIGHT_BLUE = (0, 255, 255) #for the upper rug in area 1_1
BROWN = (139, 69, 19) #for the lower rug in area 1_1
WOODEN_TAN = (255, 239, 213) #for the railings in the stair rooms
WOODEN = (218, 165, 32) #for the doors that don't transition
DARK_BROWN = (160, 82, 45) #for some chairs
LIGHT_TEAL = (0, 250, 154)
GREENISH_GRAY = (131, 139, 131) #for some walls
BRICK = (178, 34, 34) #for some walls
LIGHT_YELLOW = (238, 232, 170) #for some walls
LIGHT_GRAY = (190, 190, 190)
DARK_TEAL = (85, 107, 47) #for some walls
BURLYWOOD = (222, 184, 135)
BISQUE = (255, 228, 196)
BISQUE2 = (238, 213, 183)
PEACH_PUFF = (255, 218, 185) #POSSIBLE CHOICE
NAVAJO_WHITE = (255, 222, 173) #NAH...
MOCCASIN = (255, 228, 181)