Files
2026-04-11 14:08:27 +07:00

83 lines
2.1 KiB
CSS

/**
* CMS Design System Variables
*/
:root {
/* Primary Colors (Navy) */
--primary-color: #0a2347;
--primary-rgb: 10, 35, 71;
--primary-light: #1a3a6b;
--primary-dark: #061529;
--primary-soft: rgba(10, 35, 71, 0.07);
/* Accent (Gold) */
--accent-color: #bc9f69;
--accent-light: #d4b98a;
--accent-soft: rgba(188, 159, 105, 0.12);
/* Secondary Colors */
--secondary-color: #6c757d;
--secondary-soft: rgba(108, 117, 125, 0.1);
/* Status Colors */
--success-color: #1a7a4a;
--success-soft: rgba(26, 122, 74, 0.1);
--warning-color: #d97706;
--warning-soft: rgba(217, 119, 6, 0.1);
--danger-color: #c0392b;
--danger-soft: rgba(192, 57, 43, 0.1);
--info-color: #0e7490;
--info-soft: rgba(14, 116, 144, 0.1);
/* Neutral Colors / Backgrounds */
--bg-body: #f0f2f7;
--bg-card: #ffffff;
--bg-header: #ffffff;
--border-color: #e2e8f0;
--border-light: #f1f5f9;
--text-main: #1e293b;
--text-muted: #64748b;
--text-white: #ffffff;
/* Sidebar */
--sidebar-bg: #0a2347;
--sidebar-text: rgba(255,255,255,0.75);
--sidebar-text-active: #ffffff;
--sidebar-hover-bg: rgba(255,255,255,0.08);
--sidebar-active-bg: rgba(188,159,105,0.18);
--sidebar-active-border: #bc9f69;
--sidebar-section-color: rgba(188,159,105,0.7);
/* Typography */
--font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
--font-size-base: 0.9375rem;
--font-size-sm: 0.875rem;
--font-size-xs: 0.75rem;
--font-size-lg: 1.125rem;
--font-weight-normal: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;
/* Spacing & Borders */
--spacing-1: 0.25rem;
--spacing-2: 0.5rem;
--spacing-3: 1rem;
--spacing-4: 1.5rem;
--spacing-5: 3rem;
--border-radius: 10px;
--border-radius-sm: 6px;
--border-radius-lg: 14px;
--border-radius-full: 50px;
/* Shadows & Elevation */
--shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
--shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
--shadow-header: 0 1px 0 rgba(0,0,0,0.06);
/* Transitions */
--transition-base: all 0.2s ease-in-out;
}