Minecraft – remove the shadow on an item’s name

minecraft-commandsminecraft-java-edition

In Java Minecraft 1.13, I'm trying to /give an item with a custom name and color, but when I view it in the hotbar the text has a shadow effect that isn't present when I hover over it in the inventory. I've looked at most of the links on this page and the wiki pages, but I still don't really understand how the Name:{} tag works. If someone could explain if it is possible to turn off the shadow and how to do so that would be very helpful. Here is the give command I'm using:

give @p minecraft:carrot_on_a_stick{Enchantments:[{id:"minecraft:flame",lvl:1}],Unbreakable:1,display:{Name:"{\"text\":\"Fire Wand\",\"color\":\"orange\"}",Lore:["Hot Stuff!"]}} 1

I notice that the normal non-named items have no shadow, such as the one in the image from the above linked post, so there's probably some tag I'm missing. I've tried making it bold, italicized, and both, but it still has a shadow. Here's an example of the shadow I'm talking about:
Shadowed item name.

Best Answer

The shadow is applied dynamically, so the only way to remove it would be a mod.

Related Topic