/* CSS变量定义 */
/* 创建时间: 2026-05-22 | 创建人: liuzy */

:root {
    /* 主色调 - 深蓝科技系 */
    --color-primary: #1a237e;
    --color-primary-light: #283593;
    --color-primary-dark: #0d1642;
    
    /* 强调色 - 科技蓝 */
    --color-accent: #2962ff;
    --color-accent-light: #448aff;
    --color-accent-dark: #0039cb;
    
    /* 辅助色 - 暖橙 */
    --color-highlight: #ff6d00;
    --color-highlight-light: #ff9e40;
    --color-highlight-dark: #c43e00;
    
    /* 背景色系 */
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --bg-card: #1c2128;
    --bg-card-hover: #22272e;
    
    /* 文字色系 */
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --text-link: #58a6ff;
    
    /* 边框色 */
    --border-color: #30363d;
    --border-light: #21262d;
    
    /* 字体 */
    --font-heading: 'JetBrains Mono', 'Fira Code', monospace;
    --font-body: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-code: 'Fira Code', 'JetBrains Mono', monospace;
    
    /* 字号 */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    
    /* 间距 */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* 阴影 */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    
    /* 过渡 */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* 布局 */
    --header-height: 64px;
    --sidebar-width: 280px;
    --content-max-width: 1200px;
}
