-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDefine.py
More file actions
executable file
·47 lines (42 loc) · 768 Bytes
/
Define.py
File metadata and controls
executable file
·47 lines (42 loc) · 768 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
WIDTH, HEIGHT = 530, 590
COLS, LINE = 4, 4
BG_SCREEN = (20, 20, 40)
FPS = 70
BG_TEXT = (176, 224, 250)
BG_BLOCK = (175, 238, 238)
BG_BLOCK2 = (220, 20, 60)
VAL_CHOICE = [2, 4]
NEN = (132, 178, 200)
FRONT_SIZE = {
2: 60,
4: 60,
8: 60,
16: 60,
32: 60,
64: 60,
128: 50,
256: 50,
512: 50,
1024: 40,
2048: 40,
4096: 40
}
BLOCK_COLORS = {
2: (102, 205, 245),
4: (0, 191, 255),
8: (102, 144, 255),
16: (65, 105, 225),
32: (225, 182, 213),
64: (255, 162, 173),
128: (255, 150, 132),
256: (255, 128, 128),
512: (255, 112, 147),
1024: (255, 105, 180),
2048: (255, 255, 0),
4096: (255, 215, 0)
}
COLORBXH = {
0: (255, 255, 0),
1: (255, 69, 0),
2: (255, 160, 122),
}