aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/palettes.py
blob: f4ae55d1f625d9082a0767605d1d04f94bf49eb1 (plain)
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# Low-color themes should ONLY use the standard foreground and background
# colours listed here:
#
# http://urwid.org/manual/displayattributes.html
#



class Palette:
    _fields = [
        'body', 'foot', 'title', 'editline',

        # Status bar & heading
        'heading', 'heading_key', 'heading_inactive',

        # Help
        'key', 'head', 'text',

        # List and Connections
        'method', 'focus',
        'code_200', 'code_300', 'code_400', 'code_500', 'code_other',
        'error',
        'header', 'highlight', 'intercept', 'replay', 'ack',

        # Hex view
        'offset',

        # Grid Editor
        'focusfield', 'focusfield_error', 'field_error', 'editfield',
    ]
    high = None

    def palette(self):
        l = []
        for i in self._fields:
            v = [i]
            v.extend(self.low[i])
            if self.high and i in self.high:
                v.append(None)
                v.extend(self.high[i])
            l.append(tuple(v))
        return l


class LowDark(Palette):
    """
        Low-color dark background
    """
    low = dict(
        body = ('black', 'dark cyan'),
        foot = ('light gray', 'default'),
        title = ('white,bold', 'default'),
        editline = ('white', 'default'),

        # Status bar & heading
        heading = ('light gray', 'dark blue'),
        heading_key = ('light cyan', 'dark blue'),
        heading_inactive = ('white', 'dark gray'),

        # Help
        key = ('light cyan', 'default'),
        head = ('white,bold', 'default'),
        text = ('light gray', 'default'),

        # List and Connections
        method = ('dark cyan', 'default'),
        focus = ('yellow', 'default'),

        code_200 = ('dark green', 'default'),
        code_300 = ('light blue', 'default'),
        code_400 = ('light red', 'default'),
        code_500 = ('light red', 'default'),
        code_other = ('dark red', 'default'),

        error = ('light red', 'default'),

        header = ('dark cyan', 'default'),
        highlight = ('white,bold', 'default'),
        intercept = ('brown', 'default'),
        replay = ('light green', 'default'),
        ack = ('light red', 'default'),

        # Hex view
        offset = ('dark cyan', 'default'),

        # Grid Editor
        focusfield = ('black', 'light gray'),
        focusfield_error = ('dark red', 'light gray'),
        field_error = ('dark red', 'default'),
        editfield = ('white', 'default'),
    )


class Dark(LowDark):
    high = dict(
        heading_inactive = ('g58', 'g11'),
        intercept = ('#f60', 'default'),
    )


class LowLight(Palette):
    """
        Low-color light background
    """
    low = dict(
        body = ('black', 'dark cyan'),
        foot = ('dark gray', 'default'),
        title = ('dark magenta,bold', 'light blue'),
        editline = ('white', 'default'),

        # Status bar & heading
        heading = ('light gray', 'dark blue'),
        heading_key = ('light cyan', 'dark blue'),
        heading_inactive = ('black', 'light gray'),

        # Help
        key = ('dark blue,bold', 'default'),
        head = ('black,bold', 'default'),
        text = ('dark gray', 'default'),

        # List and Connections
        method = ('dark cyan', 'default'),
        focus = ('black', 'default'),

        code_200 = ('dark green', 'default'),
        code_300 = ('light blue', 'default'),
        code_400 = ('dark red', 'default'),
        code_500 = ('dark red', 'default'),
        code_other = ('light red', 'default'),

        error = ('light red', 'default'),

        header = ('dark blue', 'default'),
        highlight = ('black,bold', 'default'),
        intercept = ('brown', 'default'),
        replay = ('dark green', 'default'),
        ack = ('dark red', 'default'),

        # Hex view
        offset = ('dark blue', 'default'),

        # Grid Editor
        focusfield = ('black', 'light gray'),
        focusfield_error = ('dark red', 'light gray'),
        field_error = ('dark red', 'black'),
        editfield = ('black', 'default'),
    )


class Light(LowLight):
    high = dict(
        heading = ('g99', '#08f'),
        heading_key = ('#0ff,bold', '#08f'),
        heading_inactive = ('g35', 'g85'),
        replay = ('#0a0,bold', 'default'),
    )


palettes = {
    "lowlight": LowLight(),
    "lowdark": LowDark(),
    "light": Light(),
    "dark": Dark(),

# # For dark backgrounds
#   'solarized_dark': [
#     ('body', 'dark cyan', 'default'),
#     ('foot', 'dark gray', 'default'),
#     ('title', 'white,bold', 'default',),
#     ('editline', 'white', 'default',),
#
#     # Status bar & heading
#     ('heading', 'light gray', 'light cyan',),
#     ('heading_key', 'dark blue', 'white',),
#     ('heading_inactive', 'light cyan', 'light gray',),
#
#     # Help
#     ('key', 'dark blue', 'default',),
#     ('head', 'white,underline', 'default'),
#     ('text', 'light cyan', 'default'),
#
#     # List and Connections
#     ('method', 'dark cyan', 'default'),
#     ('focus', 'white', 'default'),
#
#     ('code_200', 'dark green', 'default'),
#     ('code_300', 'light blue', 'default'),
#     ('code_400', 'dark red', 'default',),
#     ('code_500', 'dark red', 'default'),
#     ('code_other', 'light red', 'default'),
#
#     ('error', 'light red', 'default'),
#
#     ('header', 'yellow', 'default'),
#     ('highlight', 'white', 'default'),
#     ('intercept', 'brown', 'default',),
#     ('replay', 'dark green', 'default',),
#     ('ack', 'dark red', 'default'),
#
#     # Hex view
#     ('offset', 'yellow', 'default'),
#     ('text', 'light cyan', 'default'),
#
#     # Grid Editor
#     ('focusfield', 'white', 'light cyan'),
#     ('focusfield_error', 'dark red', 'light gray'),
#     ('field_error', 'dark red', 'black'),
#     ('editfield', 'black', 'light gray'),
#   ],
#
# # For light backgrounds
#   'solarized_light': [
#     ('body', 'dark cyan', 'default'),
#     ('foot', 'dark gray', 'default'),
#     ('title', 'white,bold', 'light cyan',),
#     ('editline', 'white', 'default',),
#
#     # Status bar & heading
#     ('heading', 'light cyan', 'light gray',),
#     ('heading_key', 'dark blue', 'white',),
#     ('heading_inactive', 'white', 'light gray',),
#
#     # Help
#     ('key', 'dark blue', 'default',),
#     ('head', 'black,underline', 'default'),
#     ('text', 'light cyan', 'default'),
#
#     # List and Connections
#     ('method', 'dark cyan', 'default'),
#     ('focus', 'black', 'default'),
#
#     ('code_200', 'dark green', 'default'),
#     ('code_300', 'light blue', 'default'),
#     ('code_400', 'dark red', 'default',),
#     ('code_500', 'dark red', 'default'),
#     ('code_other', 'light red', 'default'),
#
#     ('error', 'light red', 'default'),
#
#     ('header', 'light cyan', 'default'),
#     ('highlight', 'black,bold', 'default'),
#     ('intercept', 'brown', 'default',),
#     ('replay', 'dark green', 'default',),
#     ('ack', 'dark red', 'default'),
#
#     # Hex view
#     ('offset', 'light cyan', 'default'),
#     ('text', 'yellow', 'default'),
#
#     # Grid Editor
#     ('focusfield', 'black', 'light gray'),
#     ('focusfield_error', 'dark red', 'light gray'),
#     ('field_error', 'dark red', 'black'),
#     ('editfield', 'white', 'light cyan'),
#   ],

}