RoyaleCustomTags
  • 👋RoyaleCustomTags - Docs
  • ADMINISTRATION
    • 📪Necessary requirements
    • 🗃️Commands
  • FUNDAMENTALS
    • ✏️New placeholder.yml
    • ✅Formats allowed
    • 🗂️Custom Inventory's
  • ROYALE PLUGINS
    • 📌RoyaleProtectionBlocks
Powered by GitBook
On this page
  • 🎨Normal Colors [1.8]
  • 🎨Hex Colors [+1.16]
  • 🎨Gradients [+1.16]
  • 🎨Multi Gradients [+1.16]
  • 🎨Wave Gradients [+1.16]
  • 🔮Modifications
  1. FUNDAMENTALS

Formats allowed

Gradients, Wave Gradients, Hex colors, Normal Colors, MultiGradients

PreviousNew placeholder.ymlNextCustom Inventory's

Last updated 1 year ago

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.

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</>"

🎨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</>"
✅