Add Wuko's shadcn-style component registry to your project. Components land directly in your codebase, themed by Wuko's role tokens, ready to customize.
Prerequisites
Wuko requires Tailwind v4 (the @theme inline pattern is v4-only) and React 19+. If your project is on Tailwind v3, migrate to v4 before continuing.
1. Initialize shadcn
Wuko components are distributed through the shadcn CLI. Run init once in your project. It creates components.json and adds lib/utils.ts with the cn helper.
terminal
npx shadcn@latest init
2. Set up Wuko's role tokens
Paste the block below into your app/globals.css(or wherever you import Tailwind). It defines Wuko's public role tokens for both dark and light modes, and wires them as Tailwind v4 utility classes (bg-wuko-card, text-wuko-text, and so on).
Wuko's registry is currently served from localhost:3000 during development. Replace the URL with the production origin once Wuko is publicly hosted.
4. Verify theming
The component lands at components/ui/placeholder.tsx (per your components.json aliases). To verify the role tokens flip correctly, set <html data-theme="light"> in your dev tools or your layout. The component will switch to light values automatically.
Build a real theme toggle later, or copy Wuko's pattern from THEMING.md. The tokens you just installed are designed to respond to data-theme changes without component-side code.