-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstyles.py
69 lines (55 loc) · 2.25 KB
/
styles.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
light_piece_color = "white"
dark_piece_color = "black"
default = {
# Game styling
"rank-label": "fg:gray",
"file-label": "fg:gray",
"light-square": "bg:cadetblue",
"light-square.light-piece": f"fg:{light_piece_color}",
"light-square.dark-piece": f"fg:{dark_piece_color}",
"dark-square": "bg:darkslateblue",
"dark-square.light-piece": f"fg:{light_piece_color}",
"dark-square.dark-piece": f"fg:{dark_piece_color}",
"last-move": "bg:yellowgreen",
"last-move.light-piece": f"fg:{light_piece_color}",
"last-move.dark-piece": f"fg:{dark_piece_color}",
"pre-move": "bg:darkorange",
"pre-move.light-piece": f"fg:{light_piece_color}",
"pre-move.dark-piece": f"fg:{dark_piece_color}",
"in-check": "bg:red",
"in-check.light-piece": f"fg:{light_piece_color}",
"in-check.dark-piece": f"fg:{dark_piece_color}",
"material-difference": "fg:gray",
"move-list": "fg:gray",
"move-input": "fg:white bold",
"player-info": "fg:white",
"player-info.title": "fg:darkorange bold",
"player-info.title.bot": "fg:darkmagenta",
"player-info.pos-rating-diff": "fg:darkgreen",
"player-info.neg-rating-diff": "fg:darkred",
"clock": "fg:white",
"clock.ticking": "bg:green",
# Program styling
"menu": "bg:",
"menu.category-title": "fg:black bg:limegreen",
"menu.option": "fg:white",
"menu.multi-value": "fg:orangered",
"focused-selected": "fg:black bg:mediumturquoise noinherit",
"unfocused-selected": "fg:black bg:white noinherit",
"menu.multi-value focused-selected": "fg:orangered bold noinherit",
"menu.multi-value unfocused-selected": "fg:orangered noinherit",
"function-bar.key": "fg:white",
"function-bar.label": "fg:black bg:mediumturquoise",
"function-bar.spacer": "",
"label": "fg:white",
"label.dim": "fg:dimgray",
"label.success": "fg:darkgreen",
"label.error": "fg:darkred",
"label.success.banner": "bg:darkgreen fg:white",
"label.error.banner": "bg:darkred fg:white",
"label.neutral.banner": "bg:slategray fg:white",
"text-area.input": "fg:orangered bold",
"text-area.input.placeholder": "italic",
"text-area.prompt": "fg:white bg:darkcyan bold noinherit",
"validation-toolbar": "fg:white bg:darkred",
}