TesseraUI

TesseraUI

TesseraUI is a lightweight HTML/CSS UI framework for NeoForge that lets mod developers build Minecraft screens with runtime-parsed HTML templates, CSS styling, flexbox/grid layouts, data binding, animations, i18n, drag and drop, item slots, virtual lists,

by
30 Downloads
neoforgelibraryoptimizationutility
Rent Server with this Mod

Screenshots

medium
v20
v22
v19
v21
v21-debug

About this Mod

Wabbanode Partner

TesseraUI

TesseraUI is a lightweight UI framework for NeoForge that lets mod developers build Minecraft screens with HTML templates, CSS styling, and native Minecraft rendering.

It is designed for developers who want richer client-side interfaces without manually rebuilding layout, styling, interaction, and rendering logic for every screen. Define your UI with familiar HTML-like templates and CSS files, bind it to Java data and callbacks, then let TesseraUI render it as real Minecraft GUI widgets.

TesseraUI does not embed a browser and does not run JavaScript. Templates and styles are parsed at runtime and converted into native UI components that work inside the Minecraft client.

Why Use TesseraUI?

Minecraft GUI development can become repetitive quickly: positioning elements, handling hover states, resizing layouts, wiring buttons, translating text, rendering item slots, and keeping large dynamic lists responsive all take time.

TesseraUI gives you a structured UI layer inspired by web development while staying inside the Minecraft rendering stack. You can build screens faster, keep presentation separate from Java logic, and reuse UI patterns across your mod.

It is useful for:

  • configuration menus
  • guide books and documentation screens
  • dashboards and admin panels
  • inventory-style interfaces
  • item selection screens
  • settings pages
  • mod management tools
  • dynamic lists and data-heavy UIs
  • custom in-game editors or debug screens

Key Features

  • HTML template rendering for Minecraft GUI screens
  • CSS styling with flexbox and grid layout support
  • CSS variables and media queries
  • Hover transitions and keyframe animations
  • Data binding with {{ }}, v-for, and v-if
  • Component templates and slots
  • Localization helpers with data-i18n and translation bindings
  • Drag and drop support
  • Item slots and inventory picker support
  • Virtual lists for large datasets
  • Tabs and interactive UI components
  • Hot reload support for faster UI development
  • Full programmatic Java API for code-first interfaces

HTML and CSS Templates

Create UI files under your mod assets and load them from Java:

<col>
  <h2 data-i18n="ui.example.title">Settings</h2>
  <p>Hello, {{ player.name }}!</p>

  <row>
    <button
    <button
  </row>
</col>
col {
  background: #1A1208;
  padding: 12px;
  gap: 8px;
}

button {
  background: #5C3A1E;
  color: #F0B27A;
  width: 80px;
  height: 16px;
  transition: background 200ms ease-out;
}

button:hover {
  background: #7C5A2E;
}

This lets artists, designers, and developers iterate on layout and styling without burying every visual decision inside Java code.

Java API Included

If you prefer building screens directly in code, TesseraUI also exposes a full Java API. You can create panels, labels, buttons, lists, animations, item slots, and interactive components programmatically while using the same layout and rendering system.

You can also mix both approaches: use templates for most UI structure, then attach Java callbacks, dynamic models, and custom components where needed.

Built for Mod Development

TesseraUI focuses on the practical needs of Minecraft mod UIs:

  • client-side screen rendering
  • item-aware widgets
  • inventory picker support
  • localization-friendly text
  • reusable components
  • responsive layouts for different GUI scales
  • hot reload during development
  • no web runtime dependency

The goal is to make complex mod screens easier to build, maintain, and restyle over time.

In-Game Example Screens

TesseraUI includes several development/demo screens that can be opened in-game to see the framework in action. They are useful for testing features, taking screenshots, and understanding how the HTML/CSS templates map to Minecraft UI widgets.

Recommended demo screens:

  • /tessera test-v18 — tooltips, reactive state, and toast notifications
  • /tessera test-v19 — tabs, modal dialogs, forms, sliders, and keyboard focus
  • /tessera test-v20 — virtual lists and CSS transitions
  • /tessera test-v21 — reusable components, context menus, and debug overlay tooling
  • /tessera test-v22 — drag and drop, item slots, and item grids
  • /tessera test-v23 — CSS transitions and keyframe animations

These screens are meant as practical examples for mod developers, not as gameplay content. They show how TesseraUI can be used to build real mod menus, configuration panels, inventory-style interfaces, dashboards, and dynamic client-side screens.

Requirements

  • Minecraft 1.21.1
  • NeoForge 21.1.x
  • Java 21

Documentation

Documentation is available on the GitHub Wiki:

https://github.com/Blushister/TesseraUI/wiki

The wiki includes getting started guides, supported HTML tags, the CSS reference, data binding, layout behavior, localization, drag and drop, item slots, hot reload, and the programmatic API.

License

TesseraUI is licensed under LGPL-3.0.

Available Versions

TesseraUI 1.1release
MC 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.7, 1.21.8, 1.21.9, 1.21.10, 1.21.11neoforge
May 19, 2026

How to Install TesseraUI on Your Server

1

Order Server

Order a Minecraft Java server with at least 3 GB RAM (4 GB recommended).

2

Set neoforge Loader

In the panel under "Egg", select the neoforge loader and matching Minecraft version (1.21.11).

3

Install Mod

Open the mod browser in the dashboard and search for "TesseraUI". Click "Install" – done! Alternatively, upload the .jar via SFTP to the /mods folder.

Compatibility

Mod Loaders

neoforge

Minecraft Versions

1.21.11, 1.21.10, 1.21.9 (+8 more)

Server-side

Unsupported

Recommended RAM

4 GB(min. 3 GB)

Frequently Asked Questions

TesseraUI server crashes on startup – what to do?

Most common cause: wrong neoforge version or insufficient RAM. Check the server log (latest.log) for "OutOfMemoryError" or "Mixin" errors. With Mado Hosting: ensure at least 3 GB RAM is allocated and the loader matches the mod version (1.21.11). You can switch loaders with one click in the panel.

Is TesseraUI compatible with neoforge?

TesseraUI officially supports neoforge for Minecraft 1.21.11, 1.21.10, 1.21.9. The Mado dashboard automatically detects incompatible loader combinations.

Server lagging with TesseraUI – how to optimize performance?

Recommended RAM: 4 GB (per 8 players). Use /spark profiler to check if TesseraUI consumes the most tick time. Common fixes: reduce server view-distance to 8-10, install "performant" or "starlight" as supplementary mods on Forge. With Mado Hosting, your server runs on NVMe SSDs with dedicated CPU cores for minimal latency.

Rent Modded Server

Install TesseraUI with just one click on your server.

Recommended RAM
4 GBab €8/mo
Min. 3 GB | +1 GB pro 8 Spieler
Create Server Now
1-Click Mod Install
NVMe SSD Storage
DDoS Protection included

Details

License
GNU Lesser General Public License v3.0 only
Server-side
Unsupported

Supported Versions

1.21.111.21.101.21.91.21.81.21.71.21.61.21.51.21.41.21.31.21.2+1 more