AI-native · Infinitely themeable

The future is now. Build it with Ramp.

A design system built for the AI era. Pick three hues, get an entire OKLCH-based design language. Every component adapts — from solo prototypes to infinite themes, shipped by humans and agents alike.

One install. Infinite skins.

A single npm package, a single provider — and every component re-skins when you swap your theme object.

# Install the package
npm install @ramp-ds/ui
# Import and use components
import { Button, Card, Input } from "@ramp-ds/ui"
import "@ramp-ds/ui/styles.css"

export default function App() {
  return (
    <Card>
      <Input placeholder="Enter your email" />
      <Button>Subscribe</Button>
    </Card>
  )
}