v0.2.0 — Aurora Release

Design tokens,
fully typed.

A cross-platform design token system and component library for React Native and web. Aurora aesthetic, O(1) runtime, build-time compiler — all tree-shakeable.

300+
Tokens
70+
Components
7
Packages
O(1)
Runtime
aurora-card.tsx
import { createUi, motion, themes } from '@stareezy-ui/tokens'
import { Card, Badge, Toast } from '@stareezy-ui/components'

const ui = createUi({
  themes: { aurora: themes.aurora },
  animations: {
    enter: {
      duration: motion.duration.enter,
      easing: motion.easing.spring,
    },
  },
  shorthands: { bg: 'backgroundColor', p: 'padding' },
})

function AuroraCard() {
  return (
    <Card variant="glow" glowColor="green" title="Aurora UI">
      <Badge variant="green" label="v0.2.0" />
      <Toast variant="success" message="Tokens loaded!" />
    </Card>
  )
}

Aurora Token Palette

View all →
deepSpace
auroraGreen
nebulaPurple
cosmicGray
surfaceDark
starWhite

What's inside

Six focused packages — install only what you need.

Build first
@stareezy-ui/tokens
Zero-dependency token definitions. Colors, spacing, radius, typography, motion, glow — all typed.
Core
@stareezy-ui/runtime
O(1) style registry. resolve(token) is a single Map.get() — no parsing, no re-computation.
70+ components
@stareezy-ui/components
70+ cross-platform components. Box, Text, Button, Input, Modal, Badge, Card, Toast and more.
Optional
@stareezy-ui/compiler
Babel/Vite plugin. Extracts token props at build time and emits atomic CSS — zero runtime cost.
Web
@stareezy-ui/stylesheet
Atomic CSS sheet management. Deduplicates rules, injects :root variables, handles theme switching.
Utilities
@stareezy-ui/core
Utilities, hooks, and platform helpers. useDeviceLayout, useDocsTheme, string/date/currency utils.

Explore the docs

Everything you need to build with Stareezy UI.

Installation
Get running in 5 minutes
Token API
Learn the token system
Theming
Aurora, dark, and light
createUi
Configure at startup
useUiConfig
Reactive config access
Components
70+ cross-platform
Compiler
Build-time optimization
Token Explorer
Browse 300+ tokens
Ready to start?
Install the packages and be up and running in minutes.
$pnpm add @stareezy-ui/tokens @stareezy-ui/components
Installation guide →