https://github.com/aryanony/uibrium
repo: **UiBrium** is a premium, open-source design system and React component library engineered for high-fidelity user experiences and deterministic UI integrity. It bridges the gap between high-end "couture" aesthetics and rigid technical standards. [**Explore Documentation**](https://uibrium.vercel.app)
https://github.com/aryanony/uibrium
accessible component-library dark-mode design-system framer-motion lucide-react monorepo open-source pnpm radix-ui react react-components tailwindcss turborepo typescript ui-components
Last synced: 2 days ago
JSON representation
repo: **UiBrium** is a premium, open-source design system and React component library engineered for high-fidelity user experiences and deterministic UI integrity. It bridges the gap between high-end "couture" aesthetics and rigid technical standards. [**Explore Documentation**](https://uibrium.vercel.app)
- Host: GitHub
- URL: https://github.com/aryanony/uibrium
- Owner: aryanony
- License: mit
- Created: 2026-04-12T12:19:21.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-14T09:17:45.000Z (about 1 month ago)
- Last Synced: 2026-05-14T11:30:18.232Z (about 1 month ago)
- Topics: accessible, component-library, dark-mode, design-system, framer-motion, lucide-react, monorepo, open-source, pnpm, radix-ui, react, react-components, tailwindcss, turborepo, typescript, ui-components
- Language: TypeScript
- Homepage: https://uibrium.vercel.app
- Size: 2.2 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Uibrium β Build Smarter. Ship Faster.

[](https://www.npmjs.com/package/@uibrium/ui)
[](https://github.com/aryanony/uibrium/actions/workflows/ci.yml)
[](LICENSE)
[](https://uibrium.vercel.app/)
[](https://aryanony.github.io/uibrium/)
[](CONTRIBUTING.md)
[](https://github.com/aryanony/uibrium)
[](https://github.com/aryanony/uibrium)
Uibrium is a **premium, open-source React design system and component library** that marries couture design with rock-solid engineering. It delivers **high-fidelity user experiences** with **deterministic UI integrity**, balancing beauty and performance in every element. With Uibrium, developers get a **modular, themable toolkit** built on industry best-practices.
## Highlights
- π― **Accessible Primitives:** Built on [Radix UI](https://radix-ui.com/) for 100% WAI-ARIA compliance. All base elements (buttons, inputs, etc.) are fully accessible from day one.
- π¨ **Tailwind-Driven Styling:** Utility-first classes with a **pure HSL design token palette**, ensuring consistency. You get all of Tailwindβs power and a custom, premium color system.
- β‘ **Sensory Animations:** Breathtaking motion with [Framer Motion](https://www.framer.com/motion/) and magnetic βsensory engineeringβ (custom cursor, loaders, etc.), adding polished micro-interactions to your UI.
- π **Tree-Shaking Ready:** Exports optimized ESM and CJS bundles (with `sideEffects: false`), so unused code is dropped in production builds. Every component is fully typed in TypeScript.
- π **Theming:** Built-in light/dark themes using CSS variables. Swap or extend themes easily, leveraging Uibriumβs HSL token API.
- π€ **Automated Documentation:** Fully automated Storybook story generation. Simply create a component, and the sanctuary handles the documentation for you.
- π **Open Source:** Premium design accessible to all. Contributions are welcome β see [Contributing](#contributing).
## Installation
Install via npm, yarn or pnpm (Uibrium uses `@uibrium/ui` as the package name) along with its peer dependencies:
```bash
# Using pnpm (recommended)
pnpm add @uibrium/ui framer-motion lucide-react
# Using npm
npm install @uibrium/ui framer-motion lucide-react
# Using yarn
yarn add @uibrium/ui framer-motion lucide-react
```
## Quick Start
Import Uibriumβs components and styles in your app. Wrap your app in the `` to enable theming, and add the `` for Uibriumβs signature cursor effect (optional).
```jsx
import React from 'react';
import { Button, CustomCursor, ThemeProvider } from '@uibrium/ui';
import '@uibrium/ui/styles.css';
export default function App() {
return (
Initiate Equilibrium
);
}
```
This renders a styled **primary button** in large size. The `ThemeProvider` ensures all components use Uibriumβs theme tokens, and `CustomCursor` adds the premium cursor animation.
## Components List
Uibrium features a comprehensive set of 19+ premium components:
| Component | Status | Component | Status |
| ------------- | ------------ | ------------- | ------------ |
| Accordion | β
Available | Dropdown Menu | β
Available |
| Alert | β
Available | Input | β
Available |
| Avatar | β
Available | Modal/Dialog | β
Available |
| Badge | β
Available | Pagination | β
Available |
| Button | β
Available | Radio Group | β
Available |
| Card | β
Available | Select | β
Available |
| Checkbox | β
Available | Switch | β
Available |
| Custom Cursor | β
Available | Table | β
Available |
| Drawer | β
Available | Tabs | β
Available |
| Tooltip | β
Available | Textarea | β
Available |
## Local Development
Want to run the project locally? Follow these steps:
```bash
# Clone the repository
git clone https://github.com/aryanony/uibrium.git
cd uibrium
# Install dependencies using pnpm
pnpm install
# Start the component library in watch mode
pnpm dev
# Start the docs site locally
pnpm dev:docs
# Start Storybook
pnpm storybook
```
## Architecture
Uibrium is organized as a **monorepo** (using PNPM Workspaces and Turborepo) to separate the core library from the docs site while allowing seamless development:
```
uibrium/
βββ packages/ui/ # Core component library (Vite + TypeScript)
βββ apps/docs/ # Documentation site (Next.js on Vercel)
βββ .storybook/ # Storybook configuration
βββ .github/ # CI/CD, issue templates, security policy
βββ .changeset/ # Versioning & changelog automation
βββ turbo.json # Turborepo task orchestration
```
- `/packages/ui` β The **core component library**. Contains all components, styles, tokens, and build configs. Built with Vite (library mode) and TypeScript.
- `/apps/docs` β The **documentation site** (Next.js). It consumes `@uibrium/ui` directly from the repo so that demos always use the latest changes.
## Theming
Uibrium comes with default light and dark themes. All component styles use CSS variables for colors, spacing, fonts, etc. To customize, override the token values in your own CSS or extend the ``. For example, swap the primary color hue by updating `--ui-primary-hue` in CSS. Because Uibrium uses HSL tokens under the hood, color adjustments affect the entire palette gracefully.
## Roadmap
Check out our [ROADMAP.md](ROADMAP.md) to see what we're working on next. You can also view our [GitHub Projects Board](https://github.com/aryanony/uibrium/projects) for real-time progress tracking.
## Discussions & Community
Have a question? Want to share what you've built? Join our [GitHub Discussions](https://github.com/aryanony/uibrium/discussions)!
- π£ Announcements
- π‘ Component Requests
- π Introductions
- π Show and Tell
## Contributing
Uibrium is 100% open source under the MIT License. Every contribution helps raise the baseline for developer tooling!
We welcome all types of contributions, from fixing typos to building new components. Check out our [Good First Issues](https://github.com/aryanony/uibrium/labels/good%20first%20issue) to get started!
> π **First time contributing to open source?**
> We have a dedicated [Beginner Contributor Guide](Uibrium-Contributor-Guide.md) that walks you through making your first pull request step-by-step!
Please read our full [CONTRIBUTING.md](CONTRIBUTING.md) guide before opening a PR.
## Contributors
Thanks to everyone who has contributed! π
[](https://github.com/aryanony/uibrium/graphs/contributors)
## Security
Please report security vulnerabilities responsibly. See our [Security Policy](.github/SECURITY.md) for details.
## Code of Conduct
We are committed to providing a welcoming community. Please read our [Code of Conduct](CODE_OF_CONDUCT.md).
## License
Released under the MIT License. See [LICENSE](LICENSE) for details.
---
_Created by [Aaryan Gupta](https://github.com/aryanony) Β· Made with β€οΈ by the UiBrium community Β· Build smarter, ship faster._