Tailwind CSS

UI Extension

Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces without leaving your HTML.

Status
Available
Version
v1.0.2
Supported Version
4.0
Released
2026-03-17
Licensing
Open Source
KEY FEATURES
Utility-first approach
JIT compilation
Responsive design
Dark mode
Custom configurations
Plugin system
Component extraction
Usage Example
Demos

Oorian's Tailwind extension provides ready-to-use components styled with Tailwind CSS. Here's a simple info alert created with TwAlert:

Your changes have been saved successfully.

Operation completed!

Something went wrong.

Java
// Create an info alert with TwAlert
TwAlert alert = new TwAlert("Your changes have been saved successfully.");
alert.setType(TwAlert.TYPE_INFO);
alert.setDismissible(true);
body.addElement(alert);

// Create a success alert
TwAlert success = new TwAlert("Operation completed!", TwAlert.TYPE_SUCCESS);
body.addElement(success);

// Create an error alert
TwAlert error = new TwAlert("Something went wrong.", TwAlert.TYPE_ERROR);
body.addElement(error);