diff options
Diffstat (limited to 'doc/en/weechat_user.en.txt')
-rw-r--r-- | doc/en/weechat_user.en.txt | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/doc/en/weechat_user.en.txt b/doc/en/weechat_user.en.txt index 44bcb1827..e0dd89c2e 100644 --- a/doc/en/weechat_user.en.txt +++ b/doc/en/weechat_user.en.txt @@ -965,8 +965,8 @@ Or if you want a very dark green background for status bar: ---------------------------------------- [[colors_aliases]] -Alises for colors -^^^^^^^^^^^^^^^^^ +Aliases +^^^^^^^ You can add color aliases with command `/color alias` and then use this alias in any color option. @@ -978,6 +978,38 @@ For example: /set weechat.color.chat_delimiters orange ---------------------------------------- +[[colors_attributes]] +Attributes +^^^^^^^^^^ + +It is possible to use some attributes for colors. One or more attributes can be +added before color name or number: + +* "*": bold text +* "%": reverse video +* "_": underlined text + +For example if you want self nick as white underlined, do: + +---------------------------------------- +/set weechat.color.chat_nick_self _white +---------------------------------------- + +Or if you want time in status bar as orange underlined with bold: + +---------------------------------------- +/set weechat.color.status_time *_214 +---------------------------------------- + +To use an attribute with default terminal color (-1), you must use a number +greater than last terminal color, for example max color in WeeChat: 99999. + +Example of bold with terminal foreground color: + +---------------------------------------- +/set weechat.color.status_time *99999 +---------------------------------------- + [[plugins]] Plugins |