65 lines
1.6 KiB
CSS
65 lines
1.6 KiB
CSS
/* Theme Variables - default */
|
|
/* Generated from default.toml */
|
|
/* Do not edit manually */
|
|
|
|
:root {
|
|
/* Colors */
|
|
--color-primary: #3b82f6;
|
|
--color-primary-hover: #2563eb;
|
|
--color-secondary: #6b7280;
|
|
--color-secondary-hover: #4b5563;
|
|
--color-accent: #f59e0b;
|
|
--color-success: #10b981;
|
|
--color-warning: #f59e0b;
|
|
--color-error: #ef4444;
|
|
--color-info: #06b6d4;
|
|
--color-surface: #ffffff;
|
|
--color-surface-dark: #1f2937;
|
|
--color-surface-hover: #f9fafb;
|
|
--color-surface-hover-dark: #374151;
|
|
--color-text: #111827;
|
|
--color-text-dark: #f9fafb;
|
|
--color-text-secondary: #6b7280;
|
|
--color-text-secondary-dark: #9ca3af;
|
|
--color-border: #e5e7eb;
|
|
--color-border-dark: #374151;
|
|
|
|
/* Typography */
|
|
--font-family-sans: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
--font-family-mono: JetBrains Mono, ui-monospace, 'Cascadia Code', monospace;
|
|
--font-size-xs: 0.75rem;
|
|
--font-size-sm: 0.875rem;
|
|
--font-size-base: 1rem;
|
|
--font-size-lg: 1.125rem;
|
|
--font-size-xl: 1.25rem;
|
|
--font-size-2xl: 1.5rem;
|
|
--font-size-3xl: 1.875rem;
|
|
--line-height-tight: 1.25;
|
|
--line-height-normal: 1.5;
|
|
--line-height-relaxed: 1.75;
|
|
|
|
/* Spacing */
|
|
--space-xs: 0.25rem;
|
|
--space-sm: 0.5rem;
|
|
--space-md: 1rem;
|
|
--space-lg: 1.5rem;
|
|
--space-xl: 2rem;
|
|
--space-"2xl": 2.5rem;
|
|
--space-"3xl": 3rem;
|
|
|
|
/* Border Radius */
|
|
--radius-sm: 0.25rem;
|
|
--radius-md: 0.375rem;
|
|
--radius-lg: 0.5rem;
|
|
--radius-xl: 0.75rem;
|
|
--radius-"2xl": 1rem;
|
|
--radius-full: 9999px;
|
|
|
|
/* Component Tokens */
|
|
|
|
/* Animations */
|
|
--duration-fast: 150ms;
|
|
--duration-normal: 200ms;
|
|
--duration-slow: 300ms;
|
|
--easing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|