DOCUMENTATION

Damo UI
Memphis kit
for React.

Memphis-inspired React components, tokens, and patterns. Compose React + Next.js UIs without giving up the visual identity.

Damo UI mascot — a purple axolotl coding on a stack of books
54 components

Buttons, cards, dialogs, inputs, and 50+ more, all on a Memphis-styled chrome.

3-layer tokens

Raw scales feed semantic pairs that feed identity overrides — switchable live.

Theme Generator

Visual editor with per-mode palette and CSS / Tailwind / JSON exports.

QUICK START

Init. Add. Render.

1

Init

Run the CLI — no dependency to add.

terminal
1npx damo-ui init
2npx damo-ui add button
2

Add the base

damo-ui add base copies the design tokens / theme CSS into your repo.

terminal
npx damo-ui add base
3

Render

See the full guide for theming and layout setup.

app/page.tsx
1import { Button } from '@/components/ui/button'
2
3export function Page() {
4  return <Button>Save</Button>
5}