diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-11-01 13:21:06 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-11-01 13:21:06 +0100 |
commit | 082cbe519bd14453fc4669758a81ff8d9ed6baca (patch) | |
tree | 41011b09c1b90f51cde5f51b074a9fc2ed5d26a5 /doc/en | |
parent | 6d69cde18674105e63b2c85e9a3cd996c8a3a3ea (diff) | |
download | weechat-082cbe519bd14453fc4669758a81ff8d9ed6baca.zip |
irc: add support of RGB colors in messages (issue #2025)
This is made using standard color code '\x04' followed by text color (RGB as
hexadecimal) and optional background (RGB as hexadecimal).
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_user.en.adoc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/en/weechat_user.en.adoc b/doc/en/weechat_user.en.adoc index 61e0d69fe..41dc69b73 100644 --- a/doc/en/weechat_user.en.adoc +++ b/doc/en/weechat_user.en.adoc @@ -1007,6 +1007,11 @@ follow (press kbd:[Ctrl+c] then following letter, with optional value): | kbd:[Ctrl+c], kbd:[c], kbd:[xx], kbd:[,], kbd:[yy] | Text color `xx` and background `yy` (see list of colors below). +| kbd:[Ctrl+c], kbd:[d], + kbd:[xxxxxx] | Text color `xxxxxx` (RGB as hexadecimal, for example `FF0000` for red). +| kbd:[Ctrl+c], kbd:[d], + kbd:[xxxxxx], kbd:[,], + kbd:[yyyyyy] | Text color `xxxxxx` and background `yyyyyy` (RGB as hexadecimal). | kbd:[Ctrl+c], kbd:[i] | Italic text. | kbd:[Ctrl+c], kbd:[o] | Disable color and attributes. | kbd:[Ctrl+c], kbd:[v] | Reverse video (revert text color with background). @@ -1014,8 +1019,8 @@ follow (press kbd:[Ctrl+c] then following letter, with optional value): |=== [NOTE] -The same code (without number for kbd:[Ctrl+c], kbd:[c]) can be used to stop the -attribute. +The same code (without number for kbd:[Ctrl+c], kbd:[c] and kbd:[Ctrl+c], kbd:[d]) +can be used to stop the attribute. Color codes for kbd:[Ctrl+c], kbd:[c] are: @@ -1574,6 +1579,7 @@ They can be changed and new ones can be added with the <<command_weechat_key,/ke | Key | Description | Command | kbd:[Ctrl+c], kbd:[b] | Insert code for bold text. | `+/input insert \x02+` | kbd:[Ctrl+c], kbd:[c] | Insert code for colored text. | `+/input insert \x03+` +| kbd:[Ctrl+c], kbd:[d] | Insert code for colored text (RGB color, as hexadecimal). | `+/input insert \x04+` | kbd:[Ctrl+c], kbd:[i] | Insert code for italic text. | `+/input insert \x1D+` | kbd:[Ctrl+c], kbd:[o] | Insert code for color reset. | `+/input insert \x0F+` | kbd:[Ctrl+c], kbd:[v] | Insert code for reverse color. | `+/input insert \x16+` |