66 lines
1.2 KiB
CSS
66 lines
1.2 KiB
CSS
:root {
|
|
/* Primary Colors */
|
|
--primary: #1a5f4a;
|
|
--primary-light: #2d8f6f;
|
|
--primary-dark: #0d4535;
|
|
|
|
/* Secondary Colors */
|
|
--secondary: #d4a853;
|
|
--secondary-light: #e6c57a;
|
|
|
|
/* Accent */
|
|
--accent: #e85d04;
|
|
|
|
/* Neutral */
|
|
--dark: #1a1a2e;
|
|
--light: #f8f9fa;
|
|
--gray: #6c757d;
|
|
|
|
/* Semantic Colors */
|
|
--success: #28a745;
|
|
--warning: #f59e0b;
|
|
--danger: #ef4444;
|
|
--info: #3b82f6;
|
|
|
|
/* Shadows */
|
|
--shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
|
|
--shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
|
|
|
|
/* Typography */
|
|
--font-primary: 'Open Sans', sans-serif;
|
|
--font-heading: 'Montserrat', sans-serif;
|
|
|
|
/* Spacing */
|
|
--spacing-xs: 0.25rem;
|
|
--spacing-sm: 0.5rem;
|
|
--spacing-md: 1rem;
|
|
--spacing-lg: 1.5rem;
|
|
--spacing-xl: 2rem;
|
|
--spacing-xxl: 3rem;
|
|
|
|
/* Border Radius */
|
|
--radius-sm: 8px;
|
|
--radius-md: 12px;
|
|
--radius-lg: 20px;
|
|
--radius-full: 50px;
|
|
|
|
/* Transitions */
|
|
--transition-fast: 0.15s ease;
|
|
--transition-normal: 0.3s ease;
|
|
--transition-slow: 0.5s ease;
|
|
|
|
/* Badge Colors */
|
|
--badge-urban: #4a90d9;
|
|
--badge-house: #9b59b6;
|
|
--badge-ruins: #e74c3c;
|
|
|
|
/* Text Colors */
|
|
--text-muted: #555;
|
|
}
|
|
|
|
/* Dark Theme */
|
|
[data-theme="dark"] {
|
|
--light: #1a1a2e;
|
|
--dark: #f8f9fa;
|
|
--gray: #94a3b8;
|
|
} |