mitmproxy/libmproxy/console/palettes.py

40 lines
1.2 KiB
Python
Raw Normal View History

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'),
]