30 lines
648 B
CSS
30 lines
648 B
CSS
:root {
|
|
--color-bg: #f3f5f7;
|
|
--color-surface: #ffffff;
|
|
--color-text: #13202b;
|
|
--color-text-muted: #5d6b77;
|
|
--color-accent: #1f7ae0;
|
|
--color-border: #dce2e8;
|
|
--color-success: #2f9e63;
|
|
--color-warning: #c0821f;
|
|
--color-error: #cc3a3a;
|
|
|
|
--font-family-base: "Inter", "Segoe UI", Arial, sans-serif;
|
|
--font-size-h1: 2rem;
|
|
--font-size-h2: 1.5rem;
|
|
--font-size-body: 1rem;
|
|
--font-size-caption: 0.875rem;
|
|
--line-height-base: 1.5;
|
|
|
|
--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.75rem;
|
|
--radius-lg: 1rem;
|
|
}
|