Skip to content

Text Formatting

This is a page for text formatting in Brickadia.

Make sure to always put </> at the end of your text so that the formatting works correctly.

Bold text

To bold text, encase it using the <b> tag.

The game does not accept <bold> as another alias for <b>.

<b>Bold Text</>

Bold Text

Italic text

To italicize text, encase it using the <i> tag.

The game does not accept <italic> as another alias for <i>.

<i>Italic Text</>

Italic Text

Underline text

To underline text, encase it using the <u> tag.

The game does not accept <underline> as another alias for <u>.

<u>Underlined Text</>

Underlined text

Colored text

To color text, encase it using the <color="hex code"> tag.

<color="#CDBB59">Colored Text</>

Colored Text

Brickadia supports the following types of hex codes (case insensitive):

  • RGB (#FFDDCC)
    Normal red, green, blue in 6-digit format.
  • Compacted RGB (#FDC)
    RGB in compact 3-digit format.
    For example, #0F0 is equivalent to #00FF00.
  • RGBA (#FFDDCCAA)
    Red, green, blue and alpha in 8-digit format.
    This is rarely needed, if not ever, because in most cases you already have an outline rendered behind the text which negates the point of having transparency.

Emotes will not be colored.

To add text with a link, encase it using the <link="Website.com"> tag.

<link="https://brickadia.com/">Clickable Link</>

https://brickadia.com/

Emotes / Emoji

The conventional chat-only method of adding emotes (:emotename:) will not work.

To add emoji in non-chat scenarios, you can encase the emoji name using the <emoji> tag.

<emoji>bunny</>

🐰

Font size affects the size of all emoji.

Code

Use the <code> tag to turn text into monospaced font code.

<code>Whatever code you put in here</>

Whatever code you put in here

Fonts

You can choose which font to use for each section of your text. Use the <font="FontName"> tag.

<font="FontName">Text</>

There are three fonts that come packaged with Brickadia:

Font size

To adjust font size, encase the text using the <size="number"> tag.

The font size is calculated in pixels.

<size="10">Tiny text</>
<size="20">Text</>
<size="30">Large text</>
<size="48">XXL text</>

Tiny text
Text
Large text
XXL text

Line break

Like in HTML, Brickadia allows you to break lines forcibly. Use the <br> tag after the gap you want the line to break from.

Line<br>break

Line
break

Keybindings

Brickadia allows you to add key icons to text. Use the <inputAction> or <inputAxis> syntax to add those icons. Refer to the Controls Options.

  • <inputAction> should be used if the action you're trying to represent (e.g. Duck, Walk, Jump) has a single key assigned to it.
  • <inputAxis> should be used for actions with two keys assigned to them (e.g. Fly Up/Down, Move Left/Right)
<inputAction>Jump</>
<inputAxis>Move Forward</>

Example:

This examples assumes copying the selection is set to the key combination Ctrl+V.

Copy selection: <inputAction>copySelection</>

Copy selection: Ctrl V

Escape formatting

You can type in these Unicode codes into Brickadia and get these symbols in place of formatting:

  • &lt; is <
  • &gt; is >

Other codes may not work, if at all other than these two.