-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcolors.py
41 lines (32 loc) · 1007 Bytes
/
colors.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
'''
Copyright (C) BCIT AI/ML Option 2018 Team with Members Following - All Rights Reserved.
- Jake Jonghun Choi jchoi179@my.bcit.ca
- Justin Carey justinthomascarey@gmail.com
- Pashan Irani pashanirani@gmail.com
- Tony Huang tonyhuang1996@hotmail.ca
- Chil Yuqing Qiu yuqingqiu93@gmail.com
Unauthorized copying of this file, via any medium is strictly prohibited.
Written by Jake Jonghun Choi <jchoi179@my.bcit.ca>
'''
BLACK = (21, 21, 21)
GREY = (120, 120, 120)
WHITE = (222, 222, 222)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)
BROWN = (87, 65, 47)
NO_MARBLE_SPOT = (145, 100, 172)
BACKGROUND = (25, 25, 25)
ORANGE = (253, 154, 72)
COLOR_FOR_PIECE_BACKGROUND_ROW = [(244, 205, 88, 10),
(246, 169, 90, 10),
(252, 154, 85, 10),
(243, 92, 82, 10),
(240, 67, 88, 10),
(243, 34, 89, 10),
(243, 34, 89, 10),
(243, 34, 89, 10),
(243, 34, 89, 10)]
COLOR_FOR_PIECE_BACKGROUND = (168,48,46)
SELECTION_HIGHLIGHT = (97, 172, 78)
LOG_BACKGROUND = (68, 20, 19)