From ae45666ff9536c0ce901985331fa1036a2dd4213 Mon Sep 17 00:00:00 2001 From: Jonas Wielicki Date: Mon, 28 Aug 2017 17:27:21 +0000 Subject: irssi theme: disable yellow and bright nick colours This helps with distinguishing highlights and normal messages. --- data/themes/irssi.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'data') diff --git a/data/themes/irssi.py b/data/themes/irssi.py index 95ba3d62..79624c54 100644 --- a/data/themes/irssi.py +++ b/data/themes/irssi.py @@ -11,6 +11,14 @@ class IrssiTheme(poezio.theming.Theme): COLOR_HIGHLIGHT_NICK = (11, -1, 'b') COLOR_ME_MESSAGE = (15, -1) + def __init__(self): + super().__init__() + self.LIST_COLOR_NICKNAMES = self.LIST_COLOR_NICKNAMES[:] + self.LIST_COLOR_NICKNAMES.remove((19, -1)) + self.LIST_COLOR_NICKNAMES.remove((20, -1)) + self.LIST_COLOR_NICKNAMES.remove((226, -1)) + self.LIST_COLOR_NICKNAMES.remove((227, -1)) + theme = IrssiTheme() -- cgit v1.2.3