/* 主题 CSS 变量 */

/* 浅色主题（默认） */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --sidebar-bg: #f5f5f5;
    --sidebar-active: #4a90d9;
    --border-color: #e0e0e0;
    --code-bg: #f6f8fa;
    --link-color: #0366d6;
}

/* 深色主题 */
[data-theme="dark"] {
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --sidebar-bg: #0f3460;
    --sidebar-active: #e94560;
    --border-color: #2a2a4a;
    --code-bg: #1e1e3f;
    --link-color: #64b5f6;
}
