{"id":49900206,"url":"https://github.com/cladd-ui/cladd","last_synced_at":"2026-06-01T02:00:34.437Z","repository":{"id":358103594,"uuid":"1221217550","full_name":"cladd-ui/cladd","owner":"cladd-ui","description":"React UI kit for building actual apps.","archived":false,"fork":false,"pushed_at":"2026-06-01T00:04:47.000Z","size":689,"stargazers_count":48,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-06-01T02:00:14.849Z","etag":null,"topics":["react","ui","uikit"],"latest_commit_sha":null,"homepage":"https://cladd.io","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cladd-ui.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.MD","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-25T22:53:22.000Z","updated_at":"2026-06-01T00:04:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cladd-ui/cladd","commit_stats":null,"previous_names":["cladd-ui/cladd"],"tags_count":73,"template":false,"template_full_name":null,"purl":"pkg:github/cladd-ui/cladd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cladd-ui%2Fcladd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cladd-ui%2Fcladd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cladd-ui%2Fcladd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cladd-ui%2Fcladd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cladd-ui","download_url":"https://codeload.github.com/cladd-ui/cladd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cladd-ui%2Fcladd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33756575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["react","ui","uikit"],"created_at":"2026-05-16T04:18:11.636Z","updated_at":"2026-06-01T02:00:34.431Z","avatar_url":"https://github.com/cladd-ui.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cladd\n\n**A React UI kit for building actual apps.**\n\nCladd is an opinionated React UI kit for editors, dashboards, settings panels, and internal tooling — the kind of UI where a sidebar, a canvas, an inspector, and forty controls have to coexist on one screen and still stay legible.\n\nIt ships with a defined visual identity: recessed and raised surfaces, a single sizing scale, eleven accent colors, dark-first theming, and a complete set of application-grade controls.\n\n- **Website:** [cladd.io](https://cladd.io)\n- **Docs:** [cladd.io/react](https://cladd.io/react/)\n- **About:** [cladd.io/about](https://cladd.io/about/)\n\n## Why cladd\n\n- **Surfaces that nest.** Recessed and raised levels auto-bump when you nest them — no manual color picking, no per-card overrides.\n- **One sizing scale.** Seven steps from `2xs` to `2xl`. Drop a `Chip` inside a `Button` at the same `size` and it just fits.\n- **Eleven accent colors.** `neutral`, `brand`, `red`, `pink`, `purple`, `blue`, `cyan`, `lime`, `green`, `yellow`, `orange` — set per component or per region.\n- **Controlled overlays.** Open a `Dialog`, `Popover`, `Toast`, or `Tooltip` imperatively from a hook — no `\u003cRoot\u003e`/`\u003cPortal\u003e`/`\u003cContent\u003e` scaffolding sprinkled across files.\n- **Dense, not crowded.** Tuned for information-rich screens: tight gaps, sharp type, default `md` height of 28 px.\n- **Dark-first, light included.**\n- **First-class TypeScript.** Every component re-exports its props and size union.\n\n## Installation\n\n```bash\nnpm install @cladd-ui/react\n```\n\nImport the stylesheet after Tailwind, in the same CSS file:\n\n```css\n@import 'tailwindcss';\n@import '@cladd-ui/react/css';\n```\n\nWrap your app in `CladdProvider` once, as high in the tree as possible:\n\n```tsx\nimport { CladdProvider } from '@cladd-ui/react';\n\nexport default function App({ children }) {\n  return \u003cCladdProvider\u003e{children}\u003c/CladdProvider\u003e;\n}\n```\n\nFramework-specific guides for Next.js, Vite, TanStack Start, React Router, Astro, and plain React are at [cladd.io/react/installation](https://cladd.io/react/installation/).\n\n### Requirements\n\n- **React 19+**\n- **Tailwind CSS v4**\n- A bundler that respects CSS import order (the cladd stylesheet must load after Tailwind).\n\n## Quick example\n\n```tsx\nimport { Button, Surface, useDialog } from '@cladd-ui/react';\n\nexport function Example() {\n  const dialog = useDialog();\n\n  return (\n    \u003cSurface\u003e\n      \u003cButton\n        color=\"red\"\n        onClick={() =\u003e\n          dialog.confirm({\n            title: 'Delete project?',\n            text: 'This cannot be undone.',\n            confirmButtonText: 'Delete',\n            confirmButtonColor: 'red',\n            onConfirm: () =\u003e {\n              // delete the project\n            },\n          })\n        }\n      \u003e\n        Delete\n      \u003c/Button\u003e\n    \u003c/Surface\u003e\n  );\n}\n```\n\n## What's in the box\n\n- **Surfaces** — `Surface`, `SurfaceCut`, with five depth levels that nest contextually.\n- **Controls** — `Button`, `Input`, `NumberField`, `Textarea`, `SearchField`, `OTPField`, `Select`, `Slider`, `Checkbox`, `Radio`, `Switch`, `Segmented`, `Chip`, `Shortcut`, `Link`, `Spinner`.\n- **Layout** — `Toolbar`, `List`, `ListItem`, `ListButton`, `ListSeparator`, `ListTitle`, `SectionTitle`.\n- **Overlays** — `Dialog`, `Popover`, `Popup`, `Tooltip`, `Toast`, `Backdrop`.\n- **Hooks** — `useDialog`, `useToast`, `useTheme`, `useAccentColor`, `useSurface`, `useDevice`.\n\nFull component reference: [cladd.io/react](https://cladd.io/react/).\n\n## Already shipping in\n\n- [Swiper Studio](https://studio.swiperjs.com/) — visual editor for Swiper sliders\n- [t0ggles](https://t0ggles.com/) — project management\n- [PaneFlow](https://paneflow.com/) — animated slideshow editor\n- [Start Page HQ](https://startpagehq.com/) — custom New Tab dashboard\n\n## License\n\n[MIT](./LICENSE) — free forever.\n\nBuilt by [Vladimir Kharlampidi](https://nolimits4web.com) — also the author of [Swiper](https://swiperjs.com), [Framework7](https://framework7.io), and [Konsta UI](https://konstaui.com).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcladd-ui%2Fcladd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcladd-ui%2Fcladd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcladd-ui%2Fcladd/lists"}