« IRC Colors en JavaScript » : différence entre les versions
(Page créée avec « ==IRC Color Code == {| class="wikitable" |- |Number |Name |- |00 |white / blanc |- |01 |black / noir |- |02 |blue (navy) / bleu marine |- |03 |green / vert |- |04 |red /... ») |
Aucun résumé des modifications |
||
Ligne 89 : | Ligne 89 : | ||
==Mots clés== | ==Mots clés== | ||
control characters, IRC colors, IRC colours, caret notation | control characters, IRC colors, IRC colours, caret notation, irc colors javascript |
Version du 22 juin 2020 à 23:38
IRC Color Code
Number | Name |
00 | white / blanc |
01 | black / noir |
02 | blue (navy) / bleu marine |
03 | green / vert |
04 | red / rouge |
05 | brown (maroon) / marron |
06 | purple / violet |
07 | orange (olive) / orange |
08 | yellow / jaune |
09 | light green (lime) / vert clair |
10 | teal (a green/blue cyan) / turquoise (un cyan vert / bleu) |
11 | light cyan (cyan / aqua) / cyan clair |
12 | light blue (royal) / bleu clair |
13 | pink (light purple / fuchsia) / rose |
14 | grey / gris |
15 | light grey (silver) / gris clair |
Example
Red text on a blue background would be:
bot.say("#canal", "\x0304,02Example\x03")
Other formatting
Code | Meaning |
\x02 | bold |
\x03 | colored text |
\x1D | italic text |
\x1F | underlined text |
\x16 | swap background and foreground colors ("reverse video") |
\x0F | reset all formatting |
Mots clés
control characters, IRC colors, IRC colours, caret notation, irc colors javascript