diff options
author | Jonas Wielicki <j.wielicki@sotecware.net> | 2017-07-26 10:23:57 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2017-08-31 00:47:04 +0200 |
commit | c6318db8c158ceec9f22938a0aae18af06374a0d (patch) | |
tree | f9e5678cf815dbcca95b6f6480515538bf599429 /data/themes | |
parent | 0f10803c4d11800f1a1aaaacf0ae31d39dc9deb0 (diff) | |
download | poezio-c6318db8c158ceec9f22938a0aae18af06374a0d.tar.gz poezio-c6318db8c158ceec9f22938a0aae18af06374a0d.tar.bz2 poezio-c6318db8c158ceec9f22938a0aae18af06374a0d.tar.xz poezio-c6318db8c158ceec9f22938a0aae18af06374a0d.zip |
start work on an irssi-like theme
Diffstat (limited to 'data/themes')
-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() + + |