promotional bannermobile promotional banner

EclipseUI

A modern config and config UI lib.
Coredex | EclipseUI
Create a server, get 25% off your first monthaffiliate logo
Create Server
affiliate banner image

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

The EclipseUI Team

profile avatar
Owner
  • 3
    Followers
  • 13
    Projects
  • 1.9M
    Downloads

More from CoredexView all

  • ModernFix-mVUS project image

    ModernFix-mVUS

    • 454.8K
    • Mods

    A fork of ModernFix that adds minor version update support.

    • 454.8K
    • May 12, 2026
    • Mods
    • +2
  • Gazetteer project image

    Gazetteer

    • 55
    • Mods

    Gazetteer is a simple minimalistic fabric mod for saving your coordinates. No minimaps.

    • 55
    • May 3, 2026
    • Mods
    • +1
  • SQLiteConnectMC project image

    SQLiteConnectMC

    • 12
    • Bukkit Plugins

    A simple plugin that lets you integrate any SQLite DB with your Minecraft server and lets you execute all sorts of queries.

    • 12
    • May 1, 2026
    • Bukkit Plugins
    • +1
  • Detail Armor Bar Reconstructed project image

    Detail Armor Bar Reconstructed

    • 242.8K
    • Mods

    More details about armor in the armor bar!

    • 242.8K
    • March 26, 2026
    • Mods
  • ModernFix-mVUS project image

    ModernFix-mVUS

    • 454.8K
    • Mods

    A fork of ModernFix that adds minor version update support.

    • 454.8K
    • May 12, 2026
    • Mods
    • +2
  • Gazetteer project image

    Gazetteer

    • 55
    • Mods

    Gazetteer is a simple minimalistic fabric mod for saving your coordinates. No minimaps.

    • 55
    • May 3, 2026
    • Mods
    • +1
  • SQLiteConnectMC project image

    SQLiteConnectMC

    • 12
    • Bukkit Plugins

    A simple plugin that lets you integrate any SQLite DB with your Minecraft server and lets you execute all sorts of queries.

    • 12
    • May 1, 2026
    • Bukkit Plugins
    • +1
  • Detail Armor Bar Reconstructed project image

    Detail Armor Bar Reconstructed

    • 242.8K
    • Mods

    More details about armor in the armor bar!

    • 242.8K
    • March 26, 2026
    • Mods