Can you please teach me how to include colour in IRC messages?
Including color in IRC messages involves using special control codes that are recognized by most IRC clients. These control codes allow you to format your messages with different colors or styles like bold or underline. Here's how you can do it:
- The control code for color is
Ctrl + K
, which appears as\x03
in raw text. - After the color code, you specify the foreground color number, optionally followed by a comma and the background color number.
Here are the standard IRC color codes:
Code | Color | Code | Color |
---|---|---|---|
00 | White | 08 | Yellow |
01 | Black | 09 | Light Green |
02 | Blue (Navy) | 10 | Cyan |
03 | Green | 11 | Light Cyan |
04 | Red | 12 | Light Blue |
05 | Brown (Maroon) | 13 | Pink |
06 | Purple | 14 | Grey |
07 | Orange | 15 | Light Grey |
To include color in your messages, use the format:
\x03<foreground>,<background>Text
-
Simple colored text (e.g., Red text):
\x034This text is red.
Output: This text is red.
-
Text with a background color (e.g., Green text on a Yellow background):
\x033,08This text is green with a yellow background.
Output: This text is green with a yellow background.
-
Resetting the color: To stop the color effect, you can use the reset code:
Ctrl + O
(\x0F
in raw text).Example:
\x034Red text\x0F Normal text
Output: Red text Normal text.
You can combine colors with other styles:
Style | Code | Description |
---|---|---|
Bold | \x02 | Makes the text bold. |
Underline | \x1F | Underlines the text. |
Italic | \x1D | Italicizes the text. |
Reverse Color | \x16 | Swaps foreground and background. |
\x02\x034Bold and Red\x0F Normal text
Output: Bold and Red Normal text.
When typing in an IRC client:
- Use
Ctrl + K
to insert the color code. - Follow with the numeric codes for foreground and background colors as needed.
If you're scripting for an IRC bot or using raw IRC commands, include the control characters as their ASCII values (\x03
, \x02
, etc.) directly in your message string.
Let me know if you’d like examples in a specific programming language, like Go or PHP, for sending these formatted IRC messages!