For the complete documentation index, see llms.txt. This page is also available as Markdown.

Formatting

Configure legacy colors, hex colors, and MiniMessage formatting

DeluxeTags supports legacy ampersand color codes, hex colors, and MiniMessage formatting in tags, messages, and GUI text.

Legacy colors

Legacy color and style codes continue to work:

tag: '&7[&e&lVIP&7]'

Hex colors

With legacy_hex: false, use the standard #RRGGBB format:

legacy_hex: false

deluxetags:
  vip:
    tag: '#ffaa00[VIP]'

With legacy_hex: true, use the legacy &#RRGGBB format instead:

legacy_hex: true

deluxetags:
  vip:
    tag: '&#ffaa00[VIP]'

Hex colors require a server version that supports RGB chat colors. On older versions, unsupported hex values are removed.

MiniMessage

MiniMessage is disabled by default. Enable it with:

You can then use MiniMessage tags in tag values, GUI text, and messages:

Legacy & codes and configured hex colors remain supported when MiniMessage is enabled, which allows existing formatting to be migrated gradually.

Run /tags reload after changing use_minimessage or legacy_hex.

Last updated

Was this helpful?