Design System

Stella UI

Scalable design system for web.
25 accessible components. Celestial design tokens. Zero config.

Get Started →Browse Components

INSTALL

npm install @stella-ds/react @stella-ds/theme

25 Components

Buttons, forms, overlays, layout primitives, and more

Accessible

Built on Radix UI primitives with ARIA support throughout

🎨

Design Tokens

Celestial color palette with CSS custom properties

🤖

AI-Ready

llms.txt and MCP server for seamless AI integration

QUICK START

Up and running in seconds

Import the theme, inject CSS variables, then use any component.

import '@stella-ds/theme/css'
import { Button, Input, Card } from '@stella-ds/react'

export default function App() {
  return (
    <Card>
      <Input placeholder="Email address" />
      <Button variant="solid">Subscribe</Button>
    </Card>
  )
}