Tailwind CSS
Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces without leaving your HTML.
Oorian Extension
The Oorian extension for Tailwind CSS is under development and will be available with the framework release.
Implementation priority based on popularity, API complexity, and user demand.
The version of Tailwind CSS that this extension supports.
The licensing model for Tailwind CSS. Check their official website for full license details.
Oorian extensions expose the complete Tailwind CSS API through type-safe Java methods.
Key Features
Usage Example
See how to use Tailwind CSS with Oorian in pure Java.
Oorian's Tailwind extension provides ready-to-use components styled with Tailwind CSS. Here's a simple info alert created with TwAlert:
Java Code
// 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);Result
Your changes have been saved successfully.
Operation completed!
Something went wrong.
Interactive Demo
Explore Tailwind CSS capabilities with these interactive examples.
Explore the full range of Tailwind extension components:
Buttons
Cards
Simple Card
A basic card with title and body text. Perfect for displaying content sections.
Featured Card
With subtitle
Cards can have subtitles for additional context and organization.
Interactive Card
This card has hover effects enabled. Try hovering over it!
Form Elements
Username is already taken
Badges & Progress
Upload Progress: 75%
Task Completion: 45%
Storage Used: 90%
Ready to Use Tailwind CSS?
Oorian makes it easy to integrate Tailwind CSS into your Java web applications with type-safe extensions and real-time updates.