Overview
The RGBirdflop SDK supports Minecraft text formatting options including bold, italic, underline, strikethrough, and obfuscated text. These can be combined with gradients.Bold Text
Make your gradient text bold:Italic Text
Apply italic formatting:Underline Text
Add underline formatting:Strikethrough Text
Apply strikethrough formatting:Obfuscated Text
Create obfuscated (magic) text:Combining Multiple Formats
You can combine multiple formatting options:Format Code Behavior
When using template-based formats (like
&#RRGGBB), formatting codes are added using the $f placeholder in the format string:- Bold:
&l - Italic:
&o - Underline:
&n - Strikethrough:
&m - Obfuscated:
&k
& or ยง) is determined by your selected output format.MiniMessage Formatting
When using MiniMessage format, formatting uses wrapper tags:MiniMessage wraps the entire gradient in formatting tags:
- Bold:
<b>...</b> - Italic:
<i>...</i> - Underline:
<u>...</u> - Strikethrough:
<st>...</st> - Obfuscated:
<obf>...</obf>
JSON Formatting
JSON format applies formatting as properties on each text component:Format Code Reference
| Option | Template Code | MiniMessage | JSON Property |
|---|---|---|---|
| Bold | &l | <b>...</b> | "bold": true |
| Italic | &o | <i>...</i> | "italic": true |
| Underline | &n | <u>...</u> | "underlined": true |
| Strikethrough | &m | <st>...</st> | "strikethrough": true |
| Obfuscated | &k | <obf>...</obf> | "obfuscated": true |