{"id":44160,"date":"2026-06-02T04:55:49","date_gmt":"2026-06-02T01:55:49","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/"},"modified":"2026-06-02T04:55:49","modified_gmt":"2026-06-02T01:55:49","slug":"colorprefix","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/","title":{"rendered":"ColorPrefix"},"content":{"rendered":"<p># ColorPrefix<\/p>\n<p>**Give your players the power to choose their own rank color \u2014 with a beautiful GUI, gradient support, and automatic compatibility with TAB, LPC, and more.**<\/p>\n<p>&#8212;<\/p>\n<p>## Features<\/p>\n<p>### Color Selection GUI<br \/>\nPlayers open a sleek inventory GUI (`\/colorprefix`) showing all colors they have permission for. Leather chestplates serve as dyed previews, the active color glows, and pagination handles large color lists cleanly.<\/p>\n<p>### Solid Colors &#038; Gradients<br \/>\nSupports single hex colors as well as multi-stop MiniMessage gradients \u2014 Adventure interpolates gradient colors per character automatically. Add as many colors as you want in `colors.yml` with just a few lines.<\/p>\n<p>### Automatic Multi-Plugin Support<br \/>\nColorPrefix detects your installed chat and tab plugins at startup and applies the correct color format for each one \u2014 simultaneously. No manual configuration required.<\/p>\n<p>| Plugin | Format used | How it&#8217;s applied |<br \/>\n|&#8212;|&#8212;|&#8212;|<br \/>\n| TAB by neznamy 4.x+ | MiniMessage (native) | TAB API `setPrefix()` |<br \/>\n| LPC | `&#038;#RRGGBB` per character | LuckPerms prefix node |<br \/>\n| EssentialsXChat | `&#038;#RRGGBB` per character | LuckPerms prefix node |<br \/>\n| ChatControl \/ Red | `&#038;#RRGGBB` per character | LuckPerms prefix node |<br \/>\n| CMI | `\u00a7x` hex per character | LuckPerms prefix node |<br \/>\n| VentureChat | `&#038;#RRGGBB` per character | LuckPerms prefix node |<br \/>\n| None found | \u2014 | PlaceholderAPI only |<\/p>\n<p>Having TAB **and** LPC installed at the same time? No problem \u2014 both get the right format simultaneously.<\/p>\n<p>### PlaceholderAPI Support<br \/>\nUse `%colorprefix_prefix%` anywhere PlaceholderAPI is supported to render the colored prefix without touching LuckPerms directly.<\/p>\n<p>| Placeholder | Returns |<br \/>\n|&#8212;|&#8212;|<br \/>\n| `%colorprefix_prefix%` | Colored LP prefix (wrapped in chosen color) |<br \/>\n| `%colorprefix_tag%` | Opening MiniMessage color tag |<br \/>\n| `%colorprefix_close_tag%` | Closing MiniMessage tag |<br \/>\n| `%colorprefix_color_id%` | ID of the selected color, or `none` |<\/p>\n<p>### Multi-Language<br \/>\nShips with **German** (`de`) and **English** (`en`). All messages and GUI texts are fully configurable via MiniMessage. Add your own language by dropping a `lang\/xx.yml` into the plugin folder.<\/p>\n<p>### Config Auto-Migration<br \/>\nWhen you update the plugin, new config keys are added automatically \u2014 without ever overwriting your existing settings. The migration runs silently on startup and logs what was added.<\/p>\n<p>&#8212;<\/p>\n<p>## Installation<\/p>\n<p>1. Drop `ColorPrefix.jar` into your `plugins\/` folder<br \/>\n2. Install LuckPerms and PlaceholderAPI *(recommended)*<br \/>\n3. Restart the server \u2014 the plugin detects everything automatically<br \/>\n4. Give players color permissions via LuckPerms (see below)<br \/>\n5. Players use `\/colorprefix` to open the GUI<\/p>\n<p>That&#8217;s it. No chat format changes needed if you use TAB or LPC.<\/p>\n<p>&#8212;<\/p>\n<p>## Permissions<\/p>\n<p>| Permission | Description |<br \/>\n|&#8212;|&#8212;|<br \/>\n| `colorprefix.use` | Open the color GUI *(default: true)* |<br \/>\n| `colorprefix.color.<id>` | Access a specific solid color |<br \/>\n| `colorprefix.gradient.<id>` | Access a specific gradient |<br \/>\n| `colorprefix.color.*` | Access all solid colors |<br \/>\n| `colorprefix.gradient.*` | Access all gradients |<br \/>\n| `colorprefix.*` | Full access including admin commands |<br \/>\n| `colorprefix.admin.reload` | Reload config and colors |<br \/>\n| `colorprefix.admin.reset` | Reset a player&#8217;s color |<br \/>\n| `colorprefix.admin.give` | Give a color to a player |<\/p>\n<p>&#8212;<\/p>\n<p>## Commands<\/p>\n<p>| Command | Permission | Description |<br \/>\n|&#8212;|&#8212;|&#8212;|<br \/>\n| `\/cp` | `colorprefix.use` | Open color GUI |<br \/>\n| `\/cp reload` | `colorprefix.admin.reload` | Reload config &#038; colors |<br \/>\n| `\/cp reset [player]` | `colorprefix.admin.reset` | Reset a player&#8217;s color |<br \/>\n| `\/cp give <player> <id>` | `colorprefix.admin.give` | Give a color to a player |<\/p>\n<p>Aliases: `\/colorprefix`, `\/color`, `\/farbe`<\/p>\n<p>&#8212;<\/p>\n<p>## Adding Colors<\/p>\n<p>Open `colors.yml` and add a block \u2014 then run `\/cp reload`, no restart needed:<\/p>\n<p>**Solid color:**<br \/>\n&#8220;`yaml<br \/>\nmy_color:<br \/>\n  display-name: &#8220;My Color&#8221;<br \/>\n  permission: &#8220;colorprefix.color.my_color&#8221;<br \/>\n  gradient: false<br \/>\n  colors:<br \/>\n    &#8211; &#8220;#FF0099&#8221;<br \/>\n&#8220;`<\/p>\n<p>**Gradient:**<br \/>\n&#8220;`yaml<br \/>\nmy_gradient:<br \/>\n  display-name: &#8220;My Gradient&#8221;<br \/>\n  permission: &#8220;colorprefix.gradient.my_gradient&#8221;<br \/>\n  gradient: true<br \/>\n  colors:<br \/>\n    &#8211; &#8220;#FF0000&#8221;<br \/>\n    &#8211; &#8220;#FF8800&#8221;<br \/>\n    &#8211; &#8220;#FFFF00&#8221;<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## Configuration<\/p>\n<p>&#8220;`yaml<br \/>\n# Language: en or de (or your own lang\/xx.yml)<br \/>\nlanguage: en<\/p>\n<p># Chat plugin integration<br \/>\nchat-plugins:<br \/>\n  auto-apply: true   # set false to use PlaceholderAPI only<\/p>\n<p># LuckPerms prefix node weight<br \/>\nluckperms:<br \/>\n  prefix-weight: 100<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## Requirements<\/p>\n<p>&#8211; Paper \/ Purpur 1.21.x<br \/>\n&#8211; Java 21+<br \/>\n&#8211; LuckPerms *(optional but strongly recommended)*<br \/>\n&#8211; PlaceholderAPI *(optional)*<br \/>\n&#8211; TAB \/ LPC \/ EssentialsChat \/ CMI \/ etc. *(optional \u2014 auto-detected)*<\/p>\n<p>&#8212;<\/p>\n<p>*Made with \u2665 by itsLarss*<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Give your players the power to choose their own rank color \u2014 with a beautiful GUI, gradient support, and full compatibility with LuckPerms and PlaceholderAPI.<\/p>\n","protected":false},"featured_media":44161,"template":"","meta":{"_minecraft_slug":"colorprefix","_minecraft_project_id":"y1Ojzk0t","_minecraft_author":"itsLarss_","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":27,"_minecraft_follows":1,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"colorprefix.zip","_minecraft_size_bytes":86276,"_minecraft_version_count":2,"_minecraft_updated_at":"2026-05-15T22:13:08.201167Z","_minecraft_date_created":"2026-04-02T21:42:21.795994Z","_minecraft_date_modified":"2026-04-24T03:10:48.406316Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/colorprefix","_minecraft_icon_attachment_id":44161,"_minecraft_imported_at":"2026-06-02T01:55:51+00:00","_minecraft_import_hash":"176a2055a8b13852675a57390fa3b85a","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[156,126,127,128,867,129],"mod_loader":[132,133,134],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-44160","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-decoration","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-social","mod_category-spigot","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ColorPrefix - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ColorPrefix - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Give your players the power to choose their own rank color \u2014 with a beautiful GUI, gradient support, and full compatibility with LuckPerms and PlaceholderAPI.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/colorprefix\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/colorprefix\\\/\",\"name\":\"ColorPrefix - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/colorprefix\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/colorprefix\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/colorprefix-icon-97f3c7e76308286a71d653432bf095200a6f8e31_96.webp\",\"datePublished\":\"2026-06-02T01:55:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/colorprefix\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/colorprefix\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/colorprefix\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/colorprefix-icon-97f3c7e76308286a71d653432bf095200a6f8e31_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/colorprefix-icon-97f3c7e76308286a71d653432bf095200a6f8e31_96.webp\",\"width\":96,\"height\":95},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/colorprefix\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"ColorPrefix\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ColorPrefix - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/","og_locale":"en_US","og_type":"article","og_title":"ColorPrefix - Minecraft","og_description":"Give your players the power to choose their own rank color \u2014 with a beautiful GUI, gradient support, and full compatibility with LuckPerms and PlaceholderAPI.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/","name":"ColorPrefix - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/colorprefix-icon-97f3c7e76308286a71d653432bf095200a6f8e31_96.webp","datePublished":"2026-06-02T01:55:49+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/colorprefix-icon-97f3c7e76308286a71d653432bf095200a6f8e31_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/colorprefix-icon-97f3c7e76308286a71d653432bf095200a6f8e31_96.webp","width":96,"height":95},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/colorprefix\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"ColorPrefix"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/44160","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/44161"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=44160"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=44160"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=44160"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=44160"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}