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.
Component Library Demos
Explore Tailwind CSS components with interactive examples.
Oorian's Tailwind extension provides pre-styled components using the Tailwind CSS design system. Select a category below to explore interactive demos:
Buttons
Button variants, colors, sizes, and states including primary, secondary, outline, ghost, and link styles
Cards
Flexible card containers with titles, subtitles, shadows, borders, hover effects, and action buttons
Forms
Text inputs, labels, validation states, input sizes, and complete form layouts with various input types
Alerts
Alert messages for info, success, warning, and error states with dismissible and rich content options
Badges & Progress
Badge colors, usage patterns, notification counters, and progress bars with color variants
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.