UNPKG

react-theme-system

Version:

A comprehensive React theme management system that enforces consistency, supports dark/light mode, and eliminates hardcoded styles

219 lines (218 loc) 6.63 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultTheme = void 0; // Enhanced default theme with comprehensive design tokens exports.defaultTheme = { light: { colors: { primary: '#4361ee', secondary: '#3f37c9', accent: '#4895ef', background: '#ffffff', surface: '#f8f9fa', text: { primary: '#212529', secondary: '#6c757d', disabled: '#adb5bd' }, border: '#dee2e6', error: '#dc3545', warning: '#ffc107', success: '#28a745', info: '#17a2b8' }, spacing: { xs: '0.25rem', sm: '0.5rem', md: '1rem', lg: '1.5rem', xl: '3rem', xxl: '4rem', scale: (multiplier) => `${multiplier * 0.25}rem` }, typography: { fontFamily: { primary: 'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif', secondary: 'Georgia, "Times New Roman", serif', mono: 'SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace' }, fontSize: { xs: '0.75rem', sm: '0.875rem', base: '1rem', lg: '1.125rem', xl: '1.25rem', '2xl': '1.5rem', '3xl': '1.875rem', '4xl': '2.25rem' }, fontWeight: { light: 300, normal: 400, medium: 500, semibold: 600, bold: 700 }, lineHeight: { tight: '1.25', normal: '1.5', relaxed: '1.75' } }, shadows: { sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)', md: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)', lg: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', xl: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)', '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.25)', inner: 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)', none: 'none' }, borderRadius: { none: '0', sm: '0.125rem', md: '0.375rem', lg: '0.5rem', xl: '0.75rem', full: '9999px' }, breakpoints: { sm: '640px', md: '768px', lg: '1024px', xl: '1280px', '2xl': '1536px' }, transitions: { fast: '150ms ease-in-out', normal: '300ms ease-in-out', slow: '500ms ease-in-out', ease: { in: 'ease-in', out: 'ease-out', inOut: 'ease-in-out' } }, zIndex: { hide: -1, auto: 0, base: 0, docked: 10, dropdown: 1000, sticky: 1100, banner: 1200, overlay: 1300, modal: 1400, popover: 1500, skipLink: 1600, toast: 1700, tooltip: 1800 } }, dark: { colors: { primary: '#60a5fa', secondary: '#818cf8', accent: '#34d399', background: '#0f172a', surface: '#1e293b', text: { primary: '#f8fafc', secondary: '#cbd5e1', disabled: '#64748b' }, border: '#334155', error: '#f87171', warning: '#fbbf24', success: '#4ade80', info: '#60a5fa' }, spacing: { xs: '0.25rem', sm: '0.5rem', md: '1rem', lg: '1.5rem', xl: '3rem', xxl: '4rem', scale: (multiplier) => `${multiplier * 0.25}rem` }, typography: { fontFamily: { primary: 'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif', secondary: 'Georgia, "Times New Roman", serif', mono: 'SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace' }, fontSize: { xs: '0.75rem', sm: '0.875rem', base: '1rem', lg: '1.125rem', xl: '1.25rem', '2xl': '1.5rem', '3xl': '1.875rem', '4xl': '2.25rem' }, fontWeight: { light: 300, normal: 400, medium: 500, semibold: 600, bold: 700 }, lineHeight: { tight: '1.25', normal: '1.5', relaxed: '1.75' } }, shadows: { sm: '0 1px 2px 0 rgba(0, 0, 0, 0.3)', md: '0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3)', lg: '0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3)', xl: '0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3)', '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.5)', inner: 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)', none: 'none' }, borderRadius: { none: '0', sm: '0.125rem', md: '0.375rem', lg: '0.5rem', xl: '0.75rem', full: '9999px' }, breakpoints: { sm: '640px', md: '768px', lg: '1024px', xl: '1280px', '2xl': '1536px' }, transitions: { fast: '150ms ease-in-out', normal: '300ms ease-in-out', slow: '500ms ease-in-out', ease: { in: 'ease-in', out: 'ease-out', inOut: 'ease-in-out' } }, zIndex: { hide: -1, auto: 0, base: 0, docked: 10, dropdown: 1000, sticky: 1100, banner: 1200, overlay: 1300, modal: 1400, popover: 1500, skipLink: 1600, toast: 1700, tooltip: 1800 } } };