irssi theme: disable yellow and bright nick colours

This helps with distinguishing highlights and normal messages.
This commit is contained in:
Jonas Wielicki 2017-08-28 17:27:21 +00:00 committed by mathieui
parent c6318db8c1
commit ae45666ff9

View file

@ -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()