-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathurtext_theme_light.py
More file actions
51 lines (50 loc) · 1.81 KB
/
urtext_theme_light.py
File metadata and controls
51 lines (50 loc) · 1.81 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
51
from sublemon.themes.colors import colors
from sublemon.themes.fonts import fonts
urtext_theme_light = {
'name': 'Urtext Light',
'keyboard_appearance': 0,
'frame' : colors['grey6'],
'background_color' :colors['paper'],
'foreground_color' : colors['grey5'],
'anchor': colors['unobtrusive'],
'highlight_color': colors['highlight_yellow'],
'function_names' : colors['lightgray'],
'keys' : colors['red'],
'values' : colors['blue_brighter'],
'flag' : colors['red'],
'bullet' : colors['red'],
'metadata_assigner' : colors['grey_reg'],
'metadata_values' : colors['blue_brighter'],
'metadata_separator' : colors['grey5'],
'node_pointers' : colors['blue_brighter'],
'node_link_modifier_action': colors['bright_green2'],
'node_link_modifier_missing': colors['yellow'],
'file_link_modifier_file' : colors['bright_green2'],
'file_link_modifier_missing': colors['yellow'],
'error_messages' : colors['red'],
'timestamp': colors['blue_brighter'],
'font' : {
'regular' : fonts['Courier New'],
'bold' : fonts['Courier New Bold'],
'bold italic': fonts['Courier New Bold Italic'],
},
'metadata_flags' : fonts['Courier New Bold'],
'wrappers' : [
colors['blue_lighter'],
colors['aqua_green2'],
colors['lime2'],
colors['bright_green2'],
colors['deep_blue2']
],
'button_border_color' : '#515151',
'button_line_background_color': '#000000',
'button_background_color' : "#515151",
'button_tint_color' : '#ffffff',
'autocompleter': {
'background_color' : "#ffffff",
'foreground_color' : "#000000",
'search_field_background_color': colors['white'],
'search_field_border_color': 'black',
'separator_color': 'black',
}
}