UNPKG

qnce-engine

Version:

Core QNCE (Quantum Narrative Convergence Engine) - Framework agnostic narrative engine with performance optimization

51 lines 1.34 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultTheme = void 0; /** * Default theme for QNCE components */ exports.defaultTheme = { colors: { primary: '#3b82f6', secondary: '#6b7280', success: '#10b981', warning: '#f59e0b', error: '#ef4444', disabled: '#d1d5db', background: '#ffffff', surface: '#f9fafb', text: '#111827', textSecondary: '#6b7280' }, spacing: { xs: '0.25rem', sm: '0.5rem', md: '1rem', lg: '1.5rem', xl: '2rem' }, borderRadius: { sm: '0.25rem', md: '0.375rem', lg: '0.5rem' }, typography: { fontFamily: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif', fontSize: { sm: '0.875rem', md: '1rem', lg: '1.125rem' }, fontWeight: { normal: 400, medium: 500, semibold: 600 } }, 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)' } }; //# sourceMappingURL=types.js.map