The Typed Design
Token System
One token API, every platform. Fully typed, object-based design tokens and cross-platform components for React Native Web Expo. Theme switching is pure CSS variables — zero JavaScript re-renders.
import { createUi, t, themes } from '@stareezy-ui/tokens'
import { Box, Text, Button } from '@stareezy-ui/components'
const ui = createUi({
themes: {
quasar: themes.quasar,
aurora: themes.aurora,
},
})
<ThemeProvider theme="quasar">
<Box bg={t.backgrounds.primary}
p={16} rounded={12}>
<Text color={t.text.primary}
type="M-heading-bold">
Theme-reactive with t.*
</Text>
<Button text="Click me"
bg={t.backgrounds.primary} />
</Box>
</ThemeProvider>Build with Stareezy AI
Describe the UI you want in plain English — Stareezy AI generates production-ready code using your design tokens and components.
Everything you need to build UIs
A complete toolkit — from design tokens to production components — built for cross-platform development.
Get started in 3 steps
From zero to a fully themed cross-platform UI.
Five built-in themes
Theming guide →What's inside
Six focused packages — install only what you need.
Loved by developers
Trusted by teams building cross-platform UIs.
“Stareezy's token system is the most intuitive I've ever used. The theme switching is seamless.”
“Built my entire SaaS landing page in one afternoon. The CLI + component library is incredible.”
“Finally, a design system that works identically on web and React Native. No more platform hacks.”
“The t accessor is genius. Theme-reactive props eliminate so much boilerplate.”
“We migrated our entire design system to Stareezy in two days. The type safety is unmatched.”
“O(1) runtime and build-time compiler? This is how a UI library should be built.”
“Stareezy's token system is the most intuitive I've ever used. The theme switching is seamless.”
“Built my entire SaaS landing page in one afternoon. The CLI + component library is incredible.”
“Finally, a design system that works identically on web and React Native. No more platform hacks.”
“The t accessor is genius. Theme-reactive props eliminate so much boilerplate.”
“We migrated our entire design system to Stareezy in two days. The type safety is unmatched.”
“O(1) runtime and build-time compiler? This is how a UI library should be built.”
Explore the docs
Everything you need to build with Stareezy UI.
$npx stareezy create my-app --template next