41 lines
1016 B
CSS
41 lines
1016 B
CSS
:root {
|
|
--color-bg: #edf3f6;
|
|
--color-bg-deep: #071927;
|
|
--color-surface: #ffffff;
|
|
--color-surface-soft: #f7fafc;
|
|
--color-text: #0e1f2d;
|
|
--color-text-muted: #647483;
|
|
--color-accent: #1168d8;
|
|
--color-accent-strong: #0c48a0;
|
|
--color-lime: #b9f24a;
|
|
--color-coral: #ff6f5e;
|
|
--color-violet: #6d5dfc;
|
|
--color-border: #d6e1ea;
|
|
--color-success: #168657;
|
|
--color-warning: #b77716;
|
|
--color-error: #c43333;
|
|
|
|
--font-family-base: "Inter", "Segoe UI", Arial, sans-serif;
|
|
--font-size-h1: 2.35rem;
|
|
--font-size-h2: 1.35rem;
|
|
--font-size-body: 1rem;
|
|
--font-size-caption: 0.875rem;
|
|
--line-height-base: 1.45;
|
|
|
|
--space-1: 0.25rem;
|
|
--space-2: 0.5rem;
|
|
--space-3: 0.75rem;
|
|
--space-4: 1rem;
|
|
--space-5: 1.25rem;
|
|
--space-6: 1.5rem;
|
|
--space-8: 2rem;
|
|
|
|
--radius-sm: 0.375rem;
|
|
--radius-md: 0.625rem;
|
|
--radius-lg: 0.75rem;
|
|
|
|
--shadow-card: 0 10px 30px rgba(14, 31, 45, 0.08);
|
|
--shadow-card-lift: 0 16px 34px rgba(14, 31, 45, 0.16);
|
|
--shadow-hero: 0 22px 60px rgba(7, 25, 39, 0.24);
|
|
}
|