aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/palettes.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/console/palettes.py')
-rw-r--r--libmproxy/console/palettes.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/libmproxy/console/palettes.py b/libmproxy/console/palettes.py
new file mode 100644
index 00000000..cb620b90
--- /dev/null
+++ b/libmproxy/console/palettes.py
@@ -0,0 +1,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'),
+]