irssi theme: disable yellow and bright nick colours
This helps with distinguishing highlights and normal messages.
This commit is contained in:
parent
c6318db8c1
commit
ae45666ff9
1 changed files with 8 additions and 0 deletions
|
@ -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()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue