{"id":49438251,"url":"https://github.com/florextech/florex-ui","last_synced_at":"2026-05-02T21:01:01.062Z","repository":{"id":353901451,"uuid":"1221335715","full_name":"florextech/florex-ui","owner":"florextech","description":"Dark-first React component library — 46+ accessible components, design tokens, Tailwind CSS v4, and MCP server by Florex Labs","archived":false,"fork":false,"pushed_at":"2026-04-26T05:37:37.000Z","size":294,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-29T18:38:23.857Z","etag":null,"topics":["accessible","component-library","dark-theme","design-system","phosphor-icons","react","storybook","tailwindcss","typescript","ui-components"],"latest_commit_sha":null,"homepage":"https://florextech.github.io/florex-ui/","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/florextech.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":"SECURITY.md","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-26T04:06:44.000Z","updated_at":"2026-04-29T04:49:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/florextech/florex-ui","commit_stats":null,"previous_names":["florextech/florex-ui"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/florextech/florex-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florextech%2Fflorex-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florextech%2Fflorex-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florextech%2Fflorex-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florextech%2Fflorex-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/florextech","download_url":"https://codeload.github.com/florextech/florex-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florextech%2Fflorex-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32473805,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["accessible","component-library","dark-theme","design-system","phosphor-icons","react","storybook","tailwindcss","typescript","ui-components"],"created_at":"2026-04-29T18:30:38.358Z","updated_at":"2026-04-30T19:00:49.804Z","avatar_url":"https://github.com/florextech.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @florexlabs/ui\n\n[![npm version](https://img.shields.io/npm/v/@florexlabs/ui.svg)](https://www.npmjs.com/package/@florexlabs/ui)\n[![license](https://img.shields.io/npm/l/@florexlabs/ui.svg)](https://github.com/florextech/florex-ui/blob/main/LICENSE)\n[![storybook](https://img.shields.io/badge/storybook-live-ff4785.svg)](https://florextech.github.io/florex-ui/)\n\nDark-first React component library built with **Tailwind CSS v4**, **TypeScript**, and **CVA**. 46+ accessible, composable components designed for modern web applications.\n\n## Features\n\n- 🌙 **Dark-first** — designed for dark interfaces with green/lime brand accents\n- 🧩 **46+ components** — forms, data display, feedback, navigation, overlays, layout\n- 🎨 **Design tokens** — CSS variables for colors, spacing, radius, shadows\n- ♿ **Accessible** — semantic HTML, ARIA attributes, keyboard navigation\n- 📦 **Tree-shakeable** — ESM + CJS, only import what you use\n- 🎯 **TypeScript** — full type safety with exported types\n- 💚 **Phosphor Icons** — optional integration with [Phosphor Icons](https://phosphoricons.com/)\n\n## Install\n\n```bash\npnpm add @florexlabs/ui\n# peer dependencies\npnpm add react react-dom tailwindcss\n# icons (optional, recommended)\npnpm add @phosphor-icons/react\n```\n\n## Quick Start\n\n```tsx\n// 1. Import the CSS tokens in your app entry\nimport \"@florexlabs/ui/florex.css\";\n\n// 2. Use components\nimport { Button, Card, Badge, Input } from \"@florexlabs/ui\";\n\nfunction App() {\n  return (\n    \u003cCard variant=\"hover\"\u003e\n      \u003cInput placeholder=\"Enter your email\" /\u003e\n      \u003cButton variant=\"primary\"\u003eSubscribe\u003c/Button\u003e\n      \u003cBadge tone=\"brand\"\u003eNew\u003c/Badge\u003e\n    \u003c/Card\u003e\n  );\n}\n```\n\n## Components\n\n### Forms\n`Button` · `IconButton` · `Input` · `Textarea` · `Select` · `Checkbox` · `Radio` · `Switch` · `Label` · `FormMessage`\n\n### Data Display\n`Card` · `Badge` · `Tag` · `Avatar` · `Table` · `Code` · `CodeBlock` · `Kbd` · `Status` · `Stat` · `DataList`\n\n### Typography\n`Heading` · `Text` · `Blockquote` · `Highlight` · `List`\n\n### Feedback\n`Alert` · `EmptyState` · `Spinner` · `Skeleton` · `Progress`\n\n### Navigation\n`Tabs` · `Accordion` · `Breadcrumb` · `Pagination` · `Steps` · `Menu`\n\n### Overlays\n`Modal` · `Drawer` · `Popover` · `Tooltip`\n\n### Layout\n`Container` · `Section` · `Navbar` · `Stack` · `Divider` · `Timeline` · `TreeView`\n\n### Utility\n`VisuallyHidden` · `cn()`\n\n## Icons\n\nWe recommend [Phosphor Icons](https://phosphoricons.com/) — 9,000+ icons in 6 weights that match the Florex design system.\n\n```tsx\nimport { Plus, Gear, Warning } from \"@phosphor-icons/react\";\nimport { Button, IconButton, Alert } from \"@florexlabs/ui\";\n\n\u003cButton\u003e\u003cPlus size={16} weight=\"bold\" /\u003e Create\u003c/Button\u003e\n\u003cIconButton icon={\u003cGear size={18} /\u003e} aria-label=\"Settings\" variant=\"ghost\" /\u003e\n\u003cAlert variant=\"warning\" icon={\u003cWarning size={18} /\u003e}\u003eCheck config\u003c/Alert\u003e\n```\n\nComponents like Pagination, Accordion, Breadcrumb, and Tag automatically use Phosphor icons when installed, with text fallbacks otherwise.\n\n## Design Tokens\n\nAll tokens are available as CSS custom properties via `florex.css`:\n\n```css\n/* Colors */\n--bg · --surface · --surface-muted · --foreground · --muted · --border\n--brand-900 · --brand-700 · --brand-600 · --brand-500 · --brand-300\n--danger · --warning · --success\n\n/* Radius */\n--radius-sm · --radius-md · --radius-lg · --radius-xl · --radius-full\n\n/* Shadows */\n--shadow-card · --shadow-glow\n\n/* Typography */\n--font-montserrat · --font-poppins\n```\n\nTokens are also available as TypeScript objects:\n\n```ts\nimport { colors, spacing, radius, shadows } from \"@florexlabs/ui\";\n```\n\n## Documentation\n\n- **[Storybook](https://florextech.github.io/florex-ui/)** — live component playground\n- **[docs/](./docs)** — MDX documentation with props tables and examples\n\n## Development\n\n```bash\npnpm install\npnpm dev          # watch mode\npnpm test         # run tests (153 tests)\npnpm storybook    # component playground\npnpm lint         # eslint + tailwind canonical\npnpm build        # production build\n```\n\n## License\n\n[MIT](./LICENSE) © [Florex Labs](https://florexlabs.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorextech%2Fflorex-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflorextech%2Fflorex-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorextech%2Fflorex-ui/lists"}