Tailwind CSS

Integration between PrimeReact and Tailwind CSS both in styled and unstyled modes.

Overview#

Tailwind CSS is a popular CSS framework based on a utility-first design. The core provides flexible CSS classes with predefined CSS rules to build your own UI elements. For example, instead of an opinionated btn className as in Bootstrap, Tailwind offers primitive classes like bg-blue-500, rounded and p-4 to apply a button.

Tailwind is an outstanding CSS library, however it lacks a true comprehensive UI suite when combined with Vue.js, this is where PrimeReact comes in by providing a wide range of highly accessible and feature rich UI component library. The core of PrimeReact does not depend on Tailwind CSS, instead we provide the necessary integration points such as the primeui tailwind plugin and the Tailwind version for the unstyled mode.

Tailwind CSS and PrimeReact can be used together via two main approaches. Simple approach is using Tailwind CSS around PrimeReact components for layout purposes as demonstrated in the samples section below, the advanced approach takes the integration a step further by allowing Tailwind CSS within the component internals to style the entire UI suite in unstyled mode.

Tailwind Theme#

PrimeTek offers the Tailwind CSS version of the entire PrimeReact UI suite in unstyled mode based on the @apply directive with IntelliSense support. Visit the Tailwind version of PrimeReact for the documentation, demos and additional resources.

Tailwind version of PrimeReact instead of the default styled mode is not tested with Tailwind v4. For the next-gen version of this project, we are building a new UI Component library based on the code ownership model where components are located inside your project source instead of imported from npm. This new library is powered by Unstyled PrimeReact Core and Tailwind v4.

Plugin#

The tailwindcss-primeui is an official plugin by PrimeTek to provide first className integration between a Prime UI library like PrimeReact and Tailwind CSS. It is designed to work both in styled and unstyled modes. In styled mode, for instance the semantic colors such as primary and surfaces are provided as Tailwind utilities e.g. bg-primary, text-surface-500, text-muted-color.

If you haven't already done so, start by integrating Tailwind into your project. Detailed steps for this process can be found in the Tailwind documentation. After successfully installing Tailwind, proceed with the installation of the PrimeUI plugin. This single npm package comes with two libraries: the CSS version is compatible with Tailwind v4, while the JS version is designed for Tailwind v3.

npm i tailwindcss-primeui

Tailwind v4#

In the CSS file that contains the tailwindcss import, add the tailwindcss-primeui import as well.

@import 'tailwindcss';
 
@import 'tailwindcss-primeui';

Tailwind v3#

Use the plugins option in your Tailwind config file to configure the plugin.

// tailwind.config.js
import PrimeUI from 'tailwindcss-primeui';
 
export default {
    // ...
    plugins: [PrimeUI]
};

Extensions#

The plugin extends the default configuration with a new set of utilities whose values are derived from the PrimeReact theme in use. All variants and breakpoints are supported e.g. dark:sm:hover:bg-primary.

ClassProperty
primary-[50-950]Primary color palette.
surface-[0-950]Surface color palette.
primaryDefault primary color.
primary-contrastDefault primary contrast color.
primary-emphasisDefault primary emphasis color.
border-surfaceDefault primary emphasis color.
bg-emphasisEmphasis background e.g. hovered element.
bg-highlightHighlight background.
bg-highlight-emphasisHighlight background with emphasis.
rounded-borderBorder radius.
text-colorText color with emphasis.
text-color-emphasisDefault primary emphasis color.
text-muted-colorSecondary text color.
text-muted-color-emphasisSecondary text color with emphasis.

Dark Mode#

In styled mode, PrimeReact uses the system as the default darkModeSelector in theme configuration. If you have a dark mode switch in your application, ensure that darkModeSelector is aligned with the Tailwind dark variant for seamless integration. Note that, this particular configuration isn't required if you're utilizing the default system color scheme.

Suppose that, the darkModeSelector is set as my-app-dark in PrimeReact.

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import { PrimeReactProvider } from '@primereact/core';
import Aura from '@primeuix/themes/aura';
 
const primereact = {
    theme: {
        preset: Aura,
        options: {
            darkModeSelector: '.my-app-dark'
        }
    }
};
 
createRoot(document.getElementById('root')!).render(
    <StrictMode>
        <PrimeReactProvider {...primereact}>
            <App />
        </PrimeReactProvider>
    </StrictMode>
);

Tailwind v4#

Add a custom variant for dark with a custom selector.

@import "tailwindcss";
@import "tailwindcss-primeui";
@custom-variant dark (&:where(.my-app-dark, .my-app-dark *));     //dark mode configuration

Tailwind v3#

Use the plugins option in your Tailwind config file to configure the plugin.

// tailwind.config.js
import PrimeUI from 'tailwindcss-primeui';
 
export default {
    darkMode: ['selector', '[className~="my-app-dark"]'], //dark mode configuration
    plugins: [PrimeUI]
};

Override#

Tailwind utilities may not be able to override the default styling of components due to css specificity, there are two possible solutions; Important and CSS Layer.

Important#

Use the ! as a prefix to enforce the styling. This is not the recommend approach, and should be used as last resort to avoid adding unnecessary style classes to your bundle.

Tailwind v4#
<InputText placeholder="Overriden" className="p-8!" />
Tailwind v3#
<InputText placeholder="Overriden" className="!p-8" />

CSS Layer#

CSS Layer provides control over the css specificity so that Tailwind utilities can safely override components.

Tailwind v4#

Ensure primereact layer is after theme and base, but before the other Tailwind layers such as utilities.

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import { PrimeReactProvider } from '@primereact/core';
import Aura from '@primeuix/themes/aura';
 
const primereact = {
    theme: {
        preset: Aura,
        options: {
            cssLayer: {
                name: 'primereact',
                order: 'theme, base, primereact'
            }
        }
    }
};
 
createRoot(document.getElementById('root')!).render(
    <StrictMode>
        <PrimeReactProvider {...primereact}>
            <App />
        </PrimeReactProvider>
    </StrictMode>
);

No change in the CSS configuration is required.

@import 'tailwindcss';
@import 'tailwindcss-primeui';
Tailwind v3#

The primereact layer should be between base and utilities.

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import { PrimeReactProvider } from '@primereact/core';
import Aura from '@primeuix/themes/aura';
 
const primereact = {
    theme: {
        preset: Aura,
        options: {
            cssLayer: {
                name: 'primereact',
                order: 'tailwind-base, primereact, tailwind-utilities'
            }
        }
    }
};
 
createRoot(document.getElementById('root')!).render(
    <StrictMode>
        <PrimeReactProvider {...primereact}>
            <App />
        </PrimeReactProvider>
    </StrictMode>
);

Tailwind v3 does not use native layer so needs to be defined with CSS.

@layer tailwind-base, primereact, tailwind-utilities;
 
@layer tailwind-base {
    @tailwind base;
}
 
@layer tailwind-utilities {
    @tailwind components;
    @tailwind utilities;
}

Samples#

Example uses cases with PrimeReact and Tailwind CSS.

Color Palette#

PrimeReact color palette as utility classes.

  • primary
    50
    100
    200
    300
    400
    500
    600
    700
    800
    900
    950
  • surface
    0
    50
    100
    200
    300
    400
    500
    600
    700
    800
    900
    950
primary
highlight
box
<div className="flex flex-col gap-12">
    <div className="flex gap-6 flex-wrap">
        <div className="rounded-border p-4 border border-transparent flex items-center justify-center bg-primary hover:bg-primary-emphasis text-primary-contrast font-medium flex-auto transition-colors">primary</div>
        <div className="rounded-border p-4 border border-transparent flex items-center justify-center bg-highlight hover:bg-highlight-emphasis font-medium flex-auto transition-colors">highlight</div>
        <div className="rounded-border p-4 border border-surface flex items-center justify-center text-muted-color hover:text-color hover:bg-emphasis font-medium flex-auto transition-colors">box</div>
    </div>
</div>

Starter#

The Tailwind v4 and PrimeReact starter example is available to demonstrate the integration setup with an example dashboard.

Animations#

The plugin also adds extended animation utilities that can be used with the styleclass and animateonscroll components.

Animation Name#

ClassProperty
animate-enteranimation-name: enter;
--p-enter-opacity: initial;
--p-enter-scale: initial;
--p-enter-rotate: initial;
--p-enter-translate-x: initial;
--p-enter-translate-y: initial;
animate-leaveanimation-name: leave;
--p-leave-opacity: initial;
--p-leave-scale: initial;
--p-leave-rotate: initial;
--p-leave-translate-x: initial;
--p-leave-translate-y: initial;
animate-leavefadein 0.15s linear
animate-fadeinfadein 0.15s linear
animate-fadeoutfadeout 0.15s linear
animate-slidedownslidedown 0.45s ease-in-out
animate-slideupslideup 0.45s cubic-bezier(0, 1, 0, 1)
animate-scaleinscalein 0.15s linear
animate-fadeinleftfadeinleft 0.15s linear
animate-fadeoutleftfadeoutleft 0.15s linear
animate-fadeinrightfadeinright 0.15s linear
animate-fadeoutrightfadeoutright 0.15s linear
animate-fadeinupfadeinup 0.15s linear
animate-fadeoutupfadeoutup 0.15s linear
animate-fadeindownfadeindown 0.15s linear
animate-fadeoutupfadeoutup 0.15s linear
animate-widthwidth 0.15s linear
animate-flipflip 0.15s linear
animate-flipupflipup 0.15s linear
animate-flipleftfadein 0.15s linear
animate-fliprightflipright 0.15s linear
animate-zoominzoomin 0.15s linear
animate-zoomindownzoomindown 0.15s linear
animate-zoominleftzoominleft 0.15s linear
animate-zoominrightzoominright 0.15s linear
animate-zoominupzoominup 0.15s linear

Animation Duration#

ClassProperty
animate-duration-0animation-duration: 0s
animate-duration-75animation-duration: 75ms
animate-duration-100animation-duration: 100ms
animate-duration-200animation-duration: 200ms
animate-duration-300animation-duration: 300ms
animate-duration-400animation-duration: 400ms
animate-duration-500animation-duration: 500ms
animate-duration-700animation-duration: 700ms
animate-duration-1000animation-duration: 1000ms
animate-duration-2000animation-duration: 2000ms
animate-duration-3000animation-duration: 300ms
animate-duration-[value]animation-duration: value

Animation Delay#

ClassProperty
animate-delay-noneanimation-duration: 0s
animate-delay-75animation-delay: 75ms
animate-delay-100animation-delay: 100ms
animate-delay-150animation-delay: 150ms
animate-delay-200animation-delay: 200ms
animate-delay-300animation-delay: 300ms
animate-delay-400animation-delay: 400ms
animate-delay-500animation-delay: 500ms
animate-delay-700animation-delay: 700ms
animate-delay-1000animation-delay: 1000ms

Iteration Count#

ClassProperty
animate-infiniteanimation-iteration-count: infinite
animate-onceanimation-iteration-count: 1
animate-twiceanimation-iteration-count: 2

Direction#

ClassProperty
animate-normalanimation-direction: normal
animate-reverseanimation-direction: reverse
animate-alternateanimation-direction: alternate
animate-alternate-reverseanimation-direction: alternate-reverse

Timing Function#

ClassProperty
animate-ease-linearanimation-timing-function: linear
animate-ease-inanimation-timing-function: cubic-bezier(0.4, 0, 1, 1)
animate-ease-outanimation-timing-function: cubic-bezier(0, 0, 0.2, 1)
animate-ease-in-outanimation-timing-function: cubic-bezier(0.4, 0, 0.2, 1)

Fill Mode#

ClassProperty
animate-fill-noneanimation-fill-mode: normal
animate-fill-forwardsanimation-fill-mode: forwards
animate-fill-backwardsanimation-fill-mode: backwards
animate-fill-bothanimation-fill-mode: both

Play State#

ClassProperty
animate-runninganimation-play-state: running
animate-pausedanimation-play-state: paused

Backface Visibility State#

ClassProperty
backface-visiblebackface-visibility: visible
backface-hiddenbackface-visibility: hidden

Fade In and Out#

Values are derived from the Tailwind CSS opacity e.g. fade-in-50 and fade-out-20. Arbitrary values such as fade-in-[15] are also supported.

ClassProperty
fade-in-{value}--p-enter-opacity: {value}
fade-out-{value}--p-leave-opacity: {value}

Zoom In and Out#

Values are derived from the Tailwind CSS scale e.g. zoom-in-50 and zoom-out-75. Arbitrary values such as zoom-in-[0.8] are also supported.

ClassProperty
zoom-in-{value}--p-enter-scale: {value}
zoom-out-{value}--p-leave-scale: {value}

Spin In and Out#

Values are derived from the Tailwind CSS rotate e.g. spin-in-45 and spin-out-90. Arbitrary values such as spin-in-[60deg] are also supported.

ClassProperty
spin-in-{value}--p-enter-rotate: {value}
spin-out-{value}--p-leave-rotate: {value}

Slide In and Out#

Values are derived from the Tailwind CSS translate e.g. slide-in-from-t-50 and slide-out-to-l-8. Arbitrary values such as slide-in-from-b-[8px] are also supported.

ClassProperty
slide-in-from-t-{value}--p-enter-translate-y: -{value}
slide-in-from-b-{value}--p-enter-translate-y: {value}
slide-in-from-l-{value}--p-enter-translate-x: -{value}
slide-in-from-r-{value}--p-enter-translate-x: {value}
slide-out-to-t-{value}--p-leave-translate-y: -{value}
slide-out-to-b-{value}--p-leave-translate-y: {value}
slide-out-to-l-{value}--p-leave-translate-x: -{value}
slide-out-to-r-{value}--p-leave-translate-x: {value}