The complete workflow
Find → compare → fix → copy
Locator Bar Color combines the three tasks that usually send players to separate tools. Start with a stable automatic color, check whether a group is readable, and turn a better choice into a validated command.
01What is the Minecraft Locator Bar?
The Locator Bar is a Java Edition multiplayer HUD that replaces the experience bar when waypoints are visible. It shows other transmitting players and supported entities as colored directional markers.
Java Edition 1.21.6 brought the feature into normal gameplay. Markers appear when a target is within the viewing range, while crouching, spectator rules, invisibility, wearable items, world settings, and transmit or receive ranges can affect visibility.
02How is the default Locator Bar color calculated?
For a UUID waypoint, Java Edition hashes the normalized UUID, uses the lower RGB bytes, then shades each channel to 90%. The result is deterministic: the same UUID produces the same default color.
This site reimplements Java UUID.hashCode() with 64-bit integer operations in the browser. The final 0.9 channel multiplier matches the 1.21.6 client renderer. Inputs with or without hyphens and mixed letter case normalize to the same 128-bit value.
03Why can the in-game color differ from this result?
A default UUID color is only the fallback. A team color or a server-set waypoint color can take priority, so this tool cannot promise what a particular server currently displays.
Use the result as the automatic Java color. If a server assigns teams, runs commands, uses plugins, or changes waypoint behavior, ask the administrator which override is active.
04How do I change a Locator Bar color with /waypoint?
Run /waypoint modify with one transmitting target and either a named color, a six-digit Hex value, reset, or a style action. The generator above produces and validates the full command.
For example, /waypoint modify @s color red uses a named color, while /waypoint modify Steve color hex 00E5B8 uses an exact RGB value. Selectors such as @a or @e must resolve to one entity, normally by adding limit=1.
05Named colors vs custom Hex colors
Named colors are the 16 familiar Minecraft chat and team colors. Hex colors provide precise RGB control and use six digits without a leading # in the command.
For Java 26.2+, named values use lowercase words joined by underscores, such as dark_purple. This site normalizes custom #RGB shorthand to uppercase RRGGBB before generating a command.
06Java Edition vs Bedrock Edition
This finder and /waypoint generator are verified for Java Edition. Bedrock uses different Locator Bar systems, so this site does not generate an unverified Java command for Bedrock.
Choose Bedrock in the generator to see the limitation rather than a misleading command. A separate Bedrock workflow should only ship after its color assignment and command behavior are independently verified.