aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/palettes.py
blob: cb620b903472b0bc0981bde99b72130c191ed7e5 (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
dark = [
    ('body', 'black', 'dark cyan', 'standout'),
    ('foot', 'light gray', 'default'),
    ('title', 'white,bold', 'default',),
    ('editline', 'white', 'default',),

    # Status bar
    ('statusbar', 'light gray', "dark blue"),
    ('statusbar_key', 'light cyan', "dark blue"),
    ('statusbar_text', 'light gray', "dark blue"),
    ('statusbar_highlight', 'white', "dark blue"),

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

    # List and Connections
    ('method', 'dark cyan', 'default'),
    ('focus', 'yellow', 'default'),
    ('goodcode', 'light green', 'default'),
    ('error', 'light red', 'default'),
    ('header', 'dark cyan', 'default'),
    ('heading', 'white,bold', 'dark blue'),
    ('inactive_heading', 'white', 'dark gray'),
    ('highlight', 'white,bold', 'default'),
    ('inactive', 'dark gray', 'default'),
    ('intercept', 'brown', 'default', None, "#f60", "default"),
    ('replay', 'light green', 'default', None, "#0f0", "default"),
    ('ack', 'light red', 'default'),

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

    # KV Editor
    ('focusfield', 'black', 'light gray'),
    ('editfield', 'black', 'light cyan'),
]