From c6318db8c158ceec9f22938a0aae18af06374a0d Mon Sep 17 00:00:00 2001 From: Jonas Wielicki Date: Wed, 26 Jul 2017 10:23:57 +0200 Subject: start work on an irssi-like theme --- data/themes/irssi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 data/themes/irssi.py (limited to 'data') diff --git a/data/themes/irssi.py b/data/themes/irssi.py new file mode 100644 index 00000000..95ba3d62 --- /dev/null +++ b/data/themes/irssi.py @@ -0,0 +1,16 @@ +import poezio.theming + +class IrssiTheme(poezio.theming.Theme): + COLOR_INFORMATION_BAR = (6, 4) + + COLOR_TAB_NEW_MESSAGE = (15, 4) + COLOR_TAB_CURRENT = (7, 12) + COLOR_TAB_HIGHLIGHT = (13, 4) + COLOR_TAB_DISCONNECTED = (9, 4) + + COLOR_HIGHLIGHT_NICK = (11, -1, 'b') + COLOR_ME_MESSAGE = (15, -1) + +theme = IrssiTheme() + + -- cgit v1.2.3