forked from Rainbow-Dreamer/musicpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
23 lines (23 loc) · 830 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
config_dict = {
'background_image':
'G:/university/MyAI project/py files/musicpy/tenshi.jpg',
'background_places': (870, -30),
'eachline_character': 58,
'pairing_symbols': ['()', '[]', "''", '""'],
'wraplines_number': 2,
'font_type': 'Consolas',
'font_size': 15,
'background_mode': 'white',
'grammar_highlight': {
'red': ['/', '@', '^', '~', '%', '&', '|', '+', '-', '?', '*'],
'blue': ['getchord', 'chord', 'trans', 'chd', 'C'],
'green': ['toScale', 'scale', 'S'],
'orange': ['toNote', 'note', 'N'],
'violet': ['piece', 'build', 'P']
},
'background_color': 'alice blue',
'foreground_color': 'black',
'active_background_color': 'light green',
'day_and_night_colors': ('white', 'gray8')
}
path_enable_list = ['background_image']