UNPKG

@syncognito/maya

Version:

Maya Design System - Shared tokens and platform-specific components

37 lines 819 B
// Root shared tokens (universal across all platforms) // Note: Colors are defined in CSS variables (rupam/variables.css) for dynamic theming // This file contains only static tokens that don't change with themes export const borderRadius = { none: 0, sm: 2, md: 4, lg: 8, xl: 12, full: 9999, }; export const zIndex = { base: 0, dropdown: 1000, modal: 2000, tooltip: 3000, overlay: 4000, toast: 5000, }; export const animation = { fast: '150ms', normal: '300ms', slow: '500ms', easing: { ease: 'ease', easeIn: 'ease-in', easeOut: 'ease-out', easeInOut: 'ease-in-out', }, }; // Export all root shared tokens export const sharedTokens = { borderRadius, zIndex, animation, }; //# sourceMappingURL=tokens.js.map