mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
|
|
dark = [
|
|
('body', 'black', 'dark cyan'),
|
|
('foot', 'light gray', 'default'),
|
|
('title', 'white,bold', 'default',),
|
|
('editline', 'white', 'default',),
|
|
|
|
# Status bar & heading
|
|
('heading', 'light gray', "dark blue", None, "g85", "dark blue"),
|
|
('heading_key', 'light cyan', "dark blue", None, "light cyan", "dark blue"),
|
|
('heading_inactive', 'white', 'dark gray', None, "g58", "g11"),
|
|
|
|
# Help
|
|
('key', 'light cyan', 'default'),
|
|
('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'),
|
|
('highlight', 'white,bold', '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'),
|
|
]
|