EclipseUI
🟡 Updated this year⚠️ Install Order · 2 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
Preview

🔍 Analysis
- 👍 0.0% endorsement rate
- 🏆 #1241 of 1284 fabric mods in this game by downloads
📋 About This Mod
# 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.md). **Quick dependency setup:** ```kotlin 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.md) for complete setup instructions and examples. ## Quick Start ```java 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 - (USAGE.md) - Complete guide on integrating EclipseUI into your mod - (https://github.com/coredex-source/EclipseUI/issues) - Report bugs or request features ## License MIT License
# 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.md).
Quick dependency setup:
```kotlin 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.md) for complete setup instructions and examples.
## Quick Start
```java 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
- (USAGE.md) - Complete guide on integrating EclipseUI into your mod
- (https://github.com/coredex-source/EclipseUI/issues) - Report bugs or request features
MIT License
📊 Mod Details
- Game
- Minecraft Mods
- Author
- Coredex
- Version
- 1.0.5+mc26.3-snapshot-8-fabric
- Downloads
- 440,061
- Endorsements
- 40
- Category
- fabric
- Created
- 2/9/2026
- Updated
- 8/13/2026
- Game Versions
- 26.3-snapshot-8
- Tags
- library
🔧 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 EclipseUI support?
The author lists 26.3-snapshot-8. Other versions may work but are untested by the author.
What is the latest version of EclipseUI?
Version 1.0.5+mc26.3-snapshot-8-fabric, published 2026-08-13 with 440,061 downloads recorded at the source.
Keep browsing — more Minecraft Mods mods await