ModMenu Badges Lib

⭐ ⭐ (243 endorsements) 📥 847,532 downloads 📌 v2026.3.1 📅 4/22/2023
🟡 Updated this year

By syorito-hatsuki · fabric

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 3/30/2026 📅 Created: 4/22/2023
⚠️ Install Order · 2 steps
1🛠️ Forge — Minecraft Forge (mod loader) Download ↗
2🛠️ Fabric — Fabric Loader Download ↗

Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.

🔍 Analysis

  • 👍 0.0% endorsement rate
  • 🏆 #930 of 1284 fabric mods in this game by downloads

📋 About This Mod

<!-- Suppress IDEA Warnings --> <!--suppress ALL --> <a name="readme-top"></a> ] ] ] ] ] ] ] ] <br /> <div align="center"> <h3 align="center">ModMenu Badges Lib</h3> <p align="center"> More badge!!! <br /> <a href="https://discord.gg/pbwnMwnUD6">Support</a> · <a href="https://github.com/syorito-hatsuki/modmenu-badges-lib/issues">Report Bug</a> · <a href="https://github.com/syorito-hatsuki/modmenu-badges-lib/issues">Request Feature</a> </p> </div> <details> <summary>Table of Contents</summary> <ol> <li><a href="#about-the-project">About The Project</a></li> <li><a href="#usage">Usage</a></li> <li><a href="#roadmap">Roadmap</a></li> <li><a href="#contributing">Contributing</a></li> <li><a href="#license">License</a></li> </ol> </details> ## About The Project ! Just a simple library for adding your own badges to ModMenu. For example, (https://github.com/Tschipcraft) uses it for the Data Pack badge in (https://github.com/Tschipcraft/dynamiclights) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## Usage <details> <summary>Mod Developers</summary> 1. Add Gradle dependency into `build.gradle` or `build.gradle.kts` ```gradle repositories { maven("https://api.modrinth.com/maven") } dependencies { // Option 1: Include ModMenu Badges Lib to project for it available within your own jar (additional ~5kb) include(modImplementation("maven.modrinth", "modmenu-badges-libb", "<version>")) // Option 2: Depend on ModMenu Badges Lib, but require that users install it manually modImplementation("maven.modrinth", "modmenu-badges-lib", "<version>") } ``` 2. Add the dependency recommend in your fabric.mod.json ```json "recommends": { "modmenu-badges-lib": "*" } ``` 3. Open (https://syorito-hatsuki.github.io/modmenu-badges-lib/) add copy result to our `fabric.mod.json`. > Alternative color code generator: https://argb-int-calculator.netlify.app ```json5 { ... "custom": { "mcb": }, ... } ``` </details> <details> <summary>Modpack developers</summary> 1. Create `modmenu-extra-badges.json` file in root of your modpack instance (.minecraft folder or else depend on launcher ) 2. Use example below to edit all how you want Color values generating tool https://syorito-hatsuki.github.io/modmenu-badges-lib/ ```json5 { // Mod ID "modmenu-badges-lib": { // Sort badges by alphabet "sort": true, // Overwrite all badges with new, aka delete all "overwrite": true, // List of modmenu-badges-lib badges "badges": }, // Deleting default Minecraft Badge "minecraft": { "badges": } } ``` </details> ## Roadmap - Search by badge - Own online badge editor with real-time preview See the (https://github.com/syorito-hatsuki/modmenu-badges-lib/issues) for a full list of proposed features (and known issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> ## Contributing Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again! 1. Fork the Project 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 4. Push to the Branch (`git push origin feature/AmazingFeature`) 5. Open a Pull Request <p align="right">(<a href="#readme-top">back to top</a>)</p> ## License Distributed under the MIT License. See `LICENSE.txt` for more information. <p align="right">(<a href="#readme-top">b

[!] [!] [!] [!] [!] [!] [!] [!]

ModMenu Badges Lib

More badge!!!

Support · Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Usage
  3. Roadmap
  4. Contributing
  5. License

## About The Project

Just a simple library for adding your own badges to ModMenu.

For example, (https://github.com/Tschipcraft) uses it for the Data Pack badge in (https://github.com/Tschipcraft/dynamiclights)

(back to top)

Mod Developers

1. Add Gradle dependency into `build.gradle` or `build.gradle.kts`

```gradle repositories { maven("https://api.modrinth.com/maven") }

dependencies { // Option 1: Include ModMenu Badges Lib to project for it available within your own jar (additional ~5kb) include(modImplementation("maven.modrinth", "modmenu-badges-libb", "")) // Option 2: Depend on ModMenu Badges Lib, but require that users install it manually modImplementation("maven.modrinth", "modmenu-badges-lib", "") } ```

2. Add the dependency recommend in your fabric.mod.json

```json "recommends": { "modmenu-badges-lib": "*" } ```

3. Open (https://syorito-hatsuki.github.io/modmenu-badges-lib/) add copy result to our `fabric.mod.json`.

> Alternative color code generator: https://argb-int-calculator.netlify.app

```json5 { ... "custom": { "mcb": [ { // Badge text "name": "Example Badge", // Fill color "fillColor": -2003942227, // Outline color "outlineColor": -2003084874 }, { //Next badge } ] }, ... } ```

Modpack developers

1. Create `modmenu-extra-badges.json` file in root of your modpack instance (.minecraft folder or else depend on launcher ) 2. Use example below to edit all how you want

Color values generating tool https://syorito-hatsuki.github.io/modmenu-badges-lib/

```json5 { // Mod ID "modmenu-badges-lib": { // Sort badges by alphabet "sort": true, // Overwrite all badges with new, aka delete all "overwrite": true, // List of modmenu-badges-lib badges "badges": [ { // Name is only required value. // Other values will be generated by it if missed "name": "Another House" }, { // Required "name": "COLORFUL", // Optional "labelColor": -16711936, // Optional "fillColor": -16776961, // Optional "outlineColor": -65536, // Optional "delete": false }, ] }, // Deleting default Minecraft Badge "minecraft": { "badges": [ { "delete": true, "name": "Minecraft" }, ] } } ```

  • [ ] Search by badge
  • Own online badge editor with real-time preview

See the (https://github.com/syorito-hatsuki/modmenu-badges-lib/issues) for a full list of proposed features (and known issues).

(back to top)

## Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

1. Fork the Project 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 4. Push to the Branch (`git push origin feature/AmazingFeature`) 5. Open a Pull Request

(back to top)

Distributed under the MIT License. See `LICENSE.txt` for more information.

(b

📊 Mod Details

Game
Minecraft Mods
Author
syorito-hatsuki
Version
2026.3.1
Downloads
847,532
Endorsements
243
Category
fabric
Created
4/22/2023
Updated
3/30/2026
Game Versions
26.1, 26.1.1, 26.1.2, 26.2
Tags
library, utility

🔗 Required By 1 Mod

These mods list this mod as a dependency.

🔧 How to Install Minecraft Mods Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Mods →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Mods versions does ModMenu Badges Lib support?

The author lists 26.1, 26.1.1, 26.1.2, 26.2. Other versions may work but are untested by the author.

What is the latest version of ModMenu Badges Lib?

Version 2026.3.1, published 2026-03-30 with 847,532 downloads recorded at the source.

Keep browsing — more Minecraft Mods mods await

📋 All Minecraft Mods Mods 🏆 Top 25 📂 More fabric 👤 More by syorito-hatsuki 🔎 Similar Mods 🌐 Best fabric (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods