Mineuniverse
Log in Register
Mods

EclipseUI

A modern config and config UI lib.
by Coredex
Download Claim this project
7,166 downloads
0 likes
Updated Jul 6, 2026
0 hypes
API and Library

EclipseUI

A lightweight, themeable config screen library for Minecraft mods.

Features

  • Fabric & NeoForge support.
  • Two themes: Faithful (vanilla style) & Modern (flat design)
  • Rich widgets: toggles, sliders, dropdowns, color pickers, text fields
  • ModMenu integration out of the box

Installation

For Mod Developers

Add EclipseUI to your mod by following the Usage Guide.

Quick dependency setup:

repositories {
    maven("https://jitpack.io")
}

dependencies {
    // Fabric
    modImplementation("com.github.coredex-source.EclipseUI:EclipseUI-fabric:v1.0.2")

    // NeoForge
    implementation("com.github.coredex-source.EclipseUI:EclipseUI-neoforge:v1.0.2")
}

See the full Usage Guide for complete setup instructions and examples.

Quick Start

EclipseUI.configScreen()
    .title(Component.literal("My Mod Config"))
    .parent(parent)
    .theme(Theme.MODERN)
    .category(cat -> cat
        .name(Component.literal("General"))
        .toggle(t -> t
            .name(Component.literal("Enable Feature"))
            .binding(() -> config.enabled, v -> config.enabled = v)
            .defaultValue(true)
        )
        .slider(s -> s
            .name(Component.literal("Range"))
            .range(0, 100, 1)
            .bindingInt(() -> config.range, v -> config.range = v)
            .defaultValue(50)
        )
    )
    .build();

Documentation

License

MIT License

EclipseUI-neoforge-1.0.5+mc26.2
MC Client, NeoForge, Server, 26.2
Release 2026-06-17 Get
EclipseUI-fabric-1.0.5+mc26.2
MC Client, Fabric, Server, 26.2
Release 2026-06-17 Get
EclipseUI 1.0.4 for 26.1
MC Client, Fabric, 26.1, 26.1.1, 26.1.2
Beta 2026-04-09 Get

More from Coredex

ModernFix-mVUS
734,823
ReOred-Forge
426
SQLiteConnectMC
36
AgriCraft Reloaded
3,424
ReOred-Fabric
315
Detail Armor Bar Reconstructed
284,339

You Might Also Like

Vivecraft
A Minecraft VR mod on a loader of your choice!
9,988,339
Athena
A crossplatform (Forge/Fabric) solution to connected block textures for 1.19.4+
99,799,527
Lodestone
A collection of code used throughout projects under the Lodestar team.
9,914,417
TheDragonLib
A library for most of sokratis12GR's Mods
9,910,232
Multi Mob Library
A library mod containing essential files for Daveyx0's mob mods
9,892,767
FTB Library (Forge) (Legacy)
FTB Library is a library mod that is used for some of our mods.
98,265,314