diff options
-rw-r--r-- | data/themes/irssi.py | 16 |
1 files changed, 16 insertions, 0 deletions
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() + + |