102 lines
2.4 KiB
CSS
102 lines
2.4 KiB
CSS
/* Global CSS Variables */
|
|
:root {
|
|
/* Colors */
|
|
--primary-color: #2563eb;
|
|
--primary-color-light: #dbeafe;
|
|
--primary-color-dark: #1e40af;
|
|
|
|
--secondary-color: #4b5563;
|
|
--secondary-color-light: #f3f4f6;
|
|
--secondary-color-dark: #1f2937;
|
|
|
|
--success-color: #059669;
|
|
--success-color-light: #d1fae5;
|
|
--success-color-dark: #065f46;
|
|
|
|
--warning-color: #d97706;
|
|
--warning-color-light: #fef3c7;
|
|
--warning-color-dark: #92400e;
|
|
|
|
--error-color: #dc2626;
|
|
--error-color-light: #fee2e2;
|
|
--error-color-dark: #991b1b;
|
|
|
|
--info-color: #0284c7;
|
|
--info-color-light: #e0f2fe;
|
|
--info-color-dark: #075985;
|
|
|
|
/* Text Colors */
|
|
--text-color: #111827;
|
|
--text-color-light: #6b7280;
|
|
--text-color-lighter: #9ca3af;
|
|
|
|
/* Background Colors */
|
|
--background-color: #ffffff;
|
|
--header-background: #f9fafb;
|
|
--hover-color: #f3f4f6;
|
|
|
|
/* Border Colors */
|
|
--border-color: #e5e7eb;
|
|
|
|
/* Spacing */
|
|
--spacing-xs: 0.25rem;
|
|
--spacing-sm: 0.5rem;
|
|
--spacing-md: 1rem;
|
|
--spacing-lg: 1.5rem;
|
|
--spacing-xl: 2rem;
|
|
|
|
/* Border Radius */
|
|
--border-radius-sm: 0.25rem;
|
|
--border-radius-md: 0.375rem;
|
|
--border-radius-lg: 0.5rem;
|
|
|
|
/* Box Shadow */
|
|
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
|
|
/* Font Sizes */
|
|
--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 Weights */
|
|
--font-weight-normal: 400;
|
|
--font-weight-medium: 500;
|
|
--font-weight-semibold: 600;
|
|
--font-weight-bold: 700;
|
|
|
|
/* Line Heights */
|
|
--line-height-tight: 1.25;
|
|
--line-height-normal: 1.5;
|
|
--line-height-relaxed: 1.75;
|
|
|
|
/* Transitions */
|
|
--transition-fast: 150ms;
|
|
--transition-normal: 200ms;
|
|
--transition-slow: 300ms;
|
|
|
|
/* Z-Index */
|
|
--z-index-dropdown: 1000;
|
|
--z-index-sticky: 1020;
|
|
--z-index-fixed: 1030;
|
|
--z-index-modal-backdrop: 1040;
|
|
--z-index-modal: 1050;
|
|
--z-index-popover: 1060;
|
|
--z-index-tooltip: 1070;
|
|
|
|
/* Dark Mode Colors */
|
|
--dark-bg-color: #1f2937;
|
|
--dark-bg-color-dark: #111827;
|
|
--dark-hover-bg: #374151;
|
|
--dark-disabled-bg: #4b5563;
|
|
--dark-text-color: #f9fafb;
|
|
--dark-text-color-light: #d1d5db;
|
|
--dark-text-color-lighter: #9ca3af;
|
|
--dark-border-color: #374151;
|
|
--dark-border-color-dark: #4b5563;
|
|
}
|