@pycolors/ui
v1.0.6
Published
Production-ready UI primitives for modern SaaS apps (Radix + Tailwind-friendly).
Maintainers
Readme
@pycolors/ui
Status
✅ Production-ready for modern SaaS starters ⚡ Actively maintained 🔁 Automated releases from the PyColors monorepo
⚠️ Read-only mirror
This repository is automatically synced from the PyColors monorepo.
Source of truth: https://github.com/pycolors-io/pycolors/tree/main/packages/ui👉 Please open issues and pull requests here — they are synced upstream.
Production-ready UI primitives for modern SaaS apps — built for speed, consistency, and real-world patterns.
- Accessible defaults (Radix + sane patterns)
- Tailwind-friendly (tokens-driven styling)
- “Starter-grade” components: Tables, Dialogs, Sheets, Alerts, Tabs…
- Designed to power the PyColors SaaS Starter and future Pro templates
Release & publishing
This repository is a distribution mirror.
- NPM publishing happens from the PyColors monorepo (Changesets).
- This mirror receives version bumps (
package.json) +CHANGELOG.mdvia sync PRs. - A GitHub Release is automatically created/updated on this repo when
package.json+CHANGELOG.mdchange onmain.
If you want to propose changes, please contribute to the monorepo source of truth: https://github.com/pycolors-io/pycolors/tree/main/packages/ui
Install
pnpm add @pycolors/ui
# or
npm i @pycolors/ui
# or
yarn add @pycolors/uiPeer dependencies
This library expects React + lucide-react:
pnpm add react react-dom lucide-reactQuick usage
import { Button, Card, CardHeader, CardTitle, CardContent } from "@pycolors/ui";
export function Example() {
return (
<Card className="p-4">
<CardHeader className="p-0">
<CardTitle>Welcome</CardTitle>
</CardHeader>
<CardContent className="p-0 pt-4">
<Button>Get started</Button>
</CardContent>
</Card>
);
}What's inside (v1)
Exports currently include:
- Button
- Card
- Badge
- Input
- PasswordInput
- Alert
- Dialog
- Sheet
- DropdownMenu
- Tabs
- Toast
- Pagination
- Table
- Skeleton
- EmptyState
- cn / utils
This is intentionally small and "starter-first": the goal is to ship a credible SaaS UX surface quickly, then expand.
Design approach
PyColors UI is not "just components".
It's a product system:
- predictable layout primitives
- consistent tokens + spacing
- real data states (loading / empty / error)
- B2B SaaS patterns (members, billing, settings, projects)
Roadmap
Next planned steps:
@pycolors/tokens(CSS variables + semantic tokens)- richer form primitives (Select, Checkbox, Radio, Switch)
- "Pro" layer: advanced components/patterns for paid templates
License
MIT (unless you decide otherwise).
Links
- PyColors: https://pycolors.io
- Starters: https://pycolors.io/starters
