-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (43 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (43 loc) · 1.15 KB
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
48
49
50
# -----------------------------------------------------------------------------
# Configuration
# -----------------------------------------------------------------------------
DELAY_SECONDS = 15 # Delay before workout
FPS = 50 # GUI refresh
BAR_WIDTH = 650
BAR_HEIGHT = 28
WIN_WIDTH = 1000
WIN_HEIGHT = 640
WINDOW_BACKGROUND = "#303030"
LIST_BACKGROUND = "#202020"
BAR_BACKGROUND = "#202020"
MENU_SEL_BACKGROUND = "#505050"
BAR_BORDER = "#666666"
BAR_COLOR = "#00CC44"
TEXT_COLOR = "white"
PART_DICT = {
"A" : "Arms",
"C" : "Core",
"L" : "Legs",
"AC" : "Arms+Core",
"LC" : "Legs+Core"
}
INTENSITY_DICT = {
"R" : "Recovery (Très facile)",
"E" : "Active Recovery / Facile",
"N" : "Normale",
"F" : "Forte",
"M" : "Max / Très Forte"
}
INTENSITY_COLORS = {
"R": "#7FDBFF", # light blue
"E": "#0055FF", # blue
"N": "#00AA00", # green
"F": "#DD2222", # red
"M": "#BB44DD", # violet
}
TITLE_FONT_SIZE = 28
BIG_FONT_SIZE = 24
NORMAL_FONT_SIZE = 20
LIST_FONT_SIZE = 14
LIST_WIDTH = 220
MAIN_FONT = "Consolas"