Tailwind
Built on Tailwind v4. Importing the source CSS gives utilities like bg-primary the same tokens that power .btn, .card, and .input. Radii and shadows use Tailwind’s built-in scale (rounded-lg, shadow-xs, …).
Branding multiple apps
Set --color-system-accent at :root to brand-shift the navbar + footer stripes and .brand-tile for one system. See Customize › System accent.
Install
Section titled “Install”npm install @aortl/admin-cssImport into your Tailwind entry
Section titled “Import into your Tailwind entry”@import "tailwindcss";@import "@aortl/admin-css/src/theme.css";@import "@aortl/admin-css/src/components/index.css";theme.cssregisters the design tokens — Tailwind generates utilities likebg-primaryandtext-text-muted.components/index.cssships the semantic classes (.btn,.input,.card,.field).
Skip either import if you only want one half.
Mix utilities and components
Section titled “Mix utilities and components”<div class="card p-6"> <h3 class="card-title">Inbox</h3> <p class="text-text-muted text-sm">3 unread</p> <div class="mt-4 flex gap-2"> <button class="btn btn-primary">Open</button> <button class="btn btn-ghost">Archive</button> </div></div>Override tokens the same way as with vanilla CSS — see Customize.