summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJonas Wielicki <j.wielicki@sotecware.net>2017-07-26 10:23:57 +0200
committermathieui <mathieui@mathieui.net>2017-08-31 00:47:04 +0200
commitc6318db8c158ceec9f22938a0aae18af06374a0d (patch)
treef9e5678cf815dbcca95b6f6480515538bf599429 /data
parent0f10803c4d11800f1a1aaaacf0ae31d39dc9deb0 (diff)
downloadpoezio-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')
-rw-r--r--data/themes/irssi.py16
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()
+
+