Think shadcn/ui for any traditional web stack — no React required.
50+ components that speak Apple's design language, built on Tailwind CSS v4.

Semantic, not utility soup

Every class name reads like intent, not implementation. Tailwind utilities are still there when you need them — for your layout, your spacing, your overrides.

This

<button class="inline-flex items-center justify-center
  rounded-lg bg-blue-500 px-4 py-2 text-sm font-medium
  text-white shadow-sm hover:bg-blue-600
  active:scale-[0.97] transition-all">
  Save Changes
</button>

Turns into

<button class="btn">Save Changes</button>

Dark mode, everywhere

One class on <html>. Every component adapts. Colors, borders, shadows — all governed by CSS variables that swap cleanly between light and dark.

Extremely lightweight

~12 KB CSS + ~5 KB JS gzipped. That's the entire library — 50+ components, dark mode, all interactions. Most components are pure CSS. A handful — tabs, dialogs, selects — ship tiny vanilla scripts. No runtime, no dependencies, no build step.

Try it yourself

See Installation for CDN, package manager, and bundler options.