@lucasmiqueias/blip-tokens
Version:
Design token system inspired by BLiP's design language
13 lines (12 loc) • 461 B
JavaScript
/**
* BLiP Design System - Main Entry Point
*
* This is the main entry point for the BLiP Design System.
* It exports all tokens, theme management utilities, and type definitions.
*/
// Core tokens
export { tokens, colors, spacing, typography, shadows, cssVars, } from "./tokens";
// Theme management
export { themeManager, useTheme, getCSSVariable, } from "./theme-manager";
// Default export for convenience
export { tokens as default } from "./tokens";