diff options
Diffstat (limited to 'slack/config.py')
-rw-r--r-- | slack/config.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/slack/config.py b/slack/config.py index 6470816..ae31350 100644 --- a/slack/config.py +++ b/slack/config.py @@ -21,6 +21,13 @@ class SlackConfigSectionColor: def __init__(self, weechat_config: WeeChatConfig): self._section = WeeChatSection(weechat_config, "color") + self.channel_mention_color = WeeChatOption( + self._section, + "channel_mention_color", + "text color for mentioned channel names in the chat", + WeeChatColor("blue"), + ) + self.disconnected = WeeChatOption( self._section, "disconnected", |