> For the complete documentation index, see [llms.txt](https://royalerealm.gitbook.io/docs-oficiales/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://royalerealm.gitbook.io/docs-oficiales/royale-custom-tags/formats-allowed.md).

# Formats allowed

The plugin has at least 5 formats to give it color and has the default Minecraft formats to modify (bold, magic, etc).

In this part I will show you how each format is used within the plugin.

### 🎨Normal Colors \[1.8]

This is the simplest and most well-known form of Minecraft where color codes are used.

<figure><img src="/files/LKEiaWxdKGSepa9hXthC" alt=""><figcaption></figcaption></figure>

Example:

```
tags: 
  yellow: 
    value: "&e%player_displayname%"
```

### 🎨Hex Colors \[+1.16]

These can be used since version 1.16 of Minecraft, where compatibility with these types of colors was added by the game.

Example:

```
tags: 
  hex-color: 
    value: "<#B2E5F8>Hey :D</>"
  hex-color-2:
    value: &#B2E5F8Hey :D
```

### 🎨Gradients \[+1.16]

You can add 2 hex colors to create an incredible gradient.

Example:

```
tags: 
  gradient: 
    value: "<#B2E5F8>Hey :D</>"
```

### 🎨Multi Gradients \[+1.16]

Multiple gradient works for multiple hex colors in the same format.

Example:

```
tags: 
  rainbow: 
    value: "<#ff595e#ffca3a#8ac926#1982c4#6a4c93>Hey :D</>"
```

### 🎨Wave Gradients \[+1.16]

The format of this gradient allows you to decide how many characters the gradient will be repeated, thus creating waves.

Example:

```
tags: 
  wave: 
    value: "<w12#0100bb#090979#00d4ff>I'm surfing through the colors :D</>"
```

### 🔮Modifications

Example:

```
tags: 
  bold: 
    value: "<l#B2E5F8>Hey :D</>" 
  magic: 
    value: "<k#B2E5F8>Hey :D</>" 
  italics: 
    value: "<o#B2E5F8>Hey :D</>"
```

a
