githubEdit

paletteColored Items

circle-exclamation

To create a colored item you have to use a base texture, for example something like the quartz texture: minecraft:item/quartz. You can use any texture you want, in this case I use the quartz texture as it's white and already included in the game files.

Then specify the color attribute in the graphics properties. In this case I use RED.

It accepts the following format:

  • RED (Bukkit Color enum)

  • #FFFFF hex (# is optional)

  • 13083194

  • 255, 255, 255 (RGB)

Chaging color during gameplay

You can change colors using the command /iacolor <color>.

Templates and variants

You can create variants of the base item to make various variants of the same item but with different color.

Mark the base item as template: true then reference it using variant_of: xxx in the other items.

Example

Last updated