mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
4ed8031172
- Indicate interception by coloring text, rather than adding an exclamation mark. - Use unicode symbol to indicate replay and for the response indicator arrow.
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
|
|
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'),
|
|
]
|