Mod Menu Stylizer
Transform the appearance of the mod list in Minecraft with this handy tool. Mod Menu Stylizer provides complete control over mod icons and badges, allowing you to create a unique and stylish interface.
Setting Up Custom Icons
To replace the default icon of any mod, simply prepare a square image in PNG format. Place the file in the Deftu/ModMenuStylizer folder and rename it according to the identifier of the desired mod.
For example, to replace the icon of the craftpresence mod, save your icon.png image in the specified directory and rename it to craftpresence.png.
Adding Special Badges
Create a JSON file in the Deftu/ModMenuStylizer folder, using the mod identifier as the filename (for example, craftpresence.json). The file structure should look like this:
{
"badges": [
{
"text": "Cool",
"color": {
"red": 255,
"green": 0,
"blue": 0
},
"outline_color": {
"red": 0,
"green": 0,
"blue": 0
}
}
]
}
The outline_color parameter is optional - if not specified, the value from the color field will be used. Colors can be defined using either objects with red, green, and blue fields, or integer RGB values.