Aurora Tokens
The aurora token group defines the deep-space dark aesthetic inspired by the aurora-pdf design language. Aurora green (#00ff88) is the primary brand color; nebula purple (#7c3aed) is the accent.
Usage
import { aurora } from '@stareezy-ui/tokens'
// Access token values
aurora.auroraGreen.value // "#00ff88"
aurora.deepSpace.value // "#050505"
aurora.nebulaPurple.value // "#7c3aed"
// Use in createUi themes
const ui = createUi({
themes: { aurora: themes.aurora }
})Token Reference
Dark / Light Variants
The aurora token group ships with first-class dark and light variants via auroraVariants. The dark variant is the base aurora palette. The light variant provides accessible light-mode equivalents.
import { auroraVariants, getVariant } from '@stareezy-ui/tokens'
const darkTokens = getVariant(auroraVariants, 'dark')
const lightTokens = getVariant(auroraVariants, 'light')
darkTokens.deepSpace.value // "#050505"
lightTokens.deepSpace.value // "#f4f4f8"