forked from prompt-toolkit/ptpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.py
More file actions
195 lines (153 loc) · 7.42 KB
/
style.py
File metadata and controls
195 lines (153 loc) · 7.42 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
from __future__ import unicode_literals
from pygments.token import Token, Keyword, Name, Comment, String, Operator, Number
from pygments.styles import get_style_by_name, get_all_styles
from prompt_toolkit.styles import DEFAULT_STYLE_EXTENSIONS, style_from_dict
from prompt_toolkit.utils import is_windows, is_conemu_ansi
__all__ = (
'get_all_code_styles',
'get_all_ui_styles',
'generate_style',
)
def get_all_code_styles():
"""
Return a mapping from style names to their classes.
"""
result = dict((name, get_style_by_name(name).styles) for name in get_all_styles())
result['win32'] = win32_code_style
return result
def get_all_ui_styles():
"""
Return a dict mapping {ui_style_name -> style_dict}.
"""
return {
'default': default_ui_style,
'blue': blue_ui_style,
}
def generate_style(python_style, ui_style):
"""
Generate Pygments Style class from two dictionaries
containing style rules.
"""
assert isinstance(python_style, dict)
assert isinstance(ui_style, dict)
styles = {}
styles.update(DEFAULT_STYLE_EXTENSIONS)
styles.update(python_style)
styles.update(ui_style)
return style_from_dict(styles)
# Code style for Windows consoles. They support only 16 colors,
# so we choose a combination that displays nicely.
win32_code_style = {
Comment: "#00ff00",
Keyword: '#44ff44',
Number: '',
Operator: '',
String: '#ff44ff',
Name: '',
Name.Decorator: '#ff4444',
Name.Class: '#ff4444',
Name.Function: '#ff4444',
Name.Builtin: '#ff4444',
Name.Attribute: '',
Name.Constant: '',
Name.Entity: '',
Name.Exception: '',
Name.Label: '',
Name.Namespace: '',
Name.Tag: '',
Name.Variable: '',
}
default_ui_style = {
# Classic prompt.
Token.Prompt: 'bold',
Token.Prompt.Dots: 'noinherit',
# (IPython <5.0) Prompt: "In [1]:"
Token.In: 'bold #008800',
Token.In.Number: '',
# Return value.
Token.Out: '#ff0000',
Token.Out.Number: '#ff0000',
# Separator between windows. (Used above docstring.)
Token.Separator: '#bbbbbb',
# Search toolbar.
Token.Toolbar.Search: '#22aaaa noinherit',
Token.Toolbar.Search.Text: 'noinherit',
# System toolbar
Token.Toolbar.System: '#22aaaa noinherit',
# "arg" toolbar.
Token.Toolbar.Arg: '#22aaaa noinherit',
Token.Toolbar.Arg.Text: 'noinherit',
# Signature toolbar.
Token.Toolbar.Signature: 'bg:#44bbbb #000000',
Token.Toolbar.Signature.CurrentName: 'bg:#008888 #ffffff bold',
Token.Toolbar.Signature.Operator: '#000000 bold',
Token.Docstring: '#888888',
# Validation toolbar.
Token.Toolbar.Validation: 'bg:#440000 #aaaaaa',
# Status toolbar.
Token.Toolbar.Status: 'bg:#222222 #aaaaaa',
Token.Toolbar.Status.Title: 'underline',
Token.Toolbar.Status.InputMode: 'bg:#222222 #ffffaa',
Token.Toolbar.Status.Key: 'bg:#000000 #888888',
Token.Toolbar.Status.PasteModeOn: 'bg:#aa4444 #ffffff',
Token.Toolbar.Status.PythonVersion: 'bg:#222222 #ffffff bold',
# When Control-C has been pressed. Grayed.
Token.Aborted: '#888888',
# The options sidebar.
Token.Sidebar: 'bg:#bbbbbb #000000',
Token.Sidebar.Title: 'bg:#668866 #ffffff',
Token.Sidebar.Label: 'bg:#bbbbbb #222222',
Token.Sidebar.Status: 'bg:#dddddd #000011',
Token.Sidebar.Selected.Label: 'bg:#222222 #eeeeee',
Token.Sidebar.Selected.Status: 'bg:#444444 #ffffff bold',
Token.Sidebar.Separator: 'bg:#bbbbbb #ffffff underline',
Token.Sidebar.Key: 'bg:#bbddbb #000000 bold',
Token.Sidebar.Key.Description: 'bg:#bbbbbb #000000',
Token.Sidebar.HelpText: 'bg:#fdf6e3 #000011',
# Styling for the history layout.
Token.History.Line: '',
Token.History.Line.Selected: 'bg:#008800 #000000',
Token.History.Line.Current: 'bg:#ffffff #000000',
Token.History.Line.Selected.Current: 'bg:#88ff88 #000000',
Token.History.ExistingInput: '#888888',
# Help Window.
Token.Window.Border: '#bbbbbb',
Token.Window.Title: 'bg:#bbbbbb #000000',
# Meta-enter message.
Token.AcceptMessage: 'bg:#ffff88 #444444',
# Exit confirmation.
Token.ExitConfirmation: 'bg:#884444 #ffffff',
}
# Some changes to get a bit more contrast on Windows consoles.
# (They only support 16 colors.)
if is_windows() and not is_conemu_ansi():
default_ui_style.update({
Token.Sidebar.Title: 'bg:#00ff00 #ffffff',
Token.ExitConfirmation: 'bg:#ff4444 #ffffff',
Token.Toolbar.Validation: 'bg:#ff4444 #ffffff',
Token.Menu.Completions.Completion: 'bg:#ffffff #000000',
Token.Menu.Completions.Completion.Current: 'bg:#aaaaaa #000000',
})
blue_ui_style = {}
blue_ui_style.update(default_ui_style)
blue_ui_style.update({
# Line numbers.
Token.LineNumber: '#aa6666',
# Highlighting of search matches in document.
Token.SearchMatch: '#ffffff bg:#4444aa',
Token.SearchMatch.Current: '#ffffff bg:#44aa44',
# Highlighting of select text in document.
Token.SelectedText: '#ffffff bg:#6666aa',
# Completer toolbar.
Token.Toolbar.Completions: 'bg:#44bbbb #000000',
Token.Toolbar.Completions.Arrow: 'bg:#44bbbb #000000 bold',
Token.Toolbar.Completions.Completion: 'bg:#44bbbb #000000',
Token.Toolbar.Completions.Completion.Current: 'bg:#008888 #ffffff',
# Completer menu.
Token.Menu.Completions.Completion: 'bg:#44bbbb #000000',
Token.Menu.Completions.Completion.Current: 'bg:#008888 #ffffff',
Token.Menu.Completions.Meta: 'bg:#449999 #000000',
Token.Menu.Completions.Meta.Current: 'bg:#00aaaa #000000',
Token.Menu.Completions.ProgressBar: 'bg:#aaaaaa',
Token.Menu.Completions.ProgressButton: 'bg:#000000',
})