/* 浅色主题 */
body.light-theme {
    --background-color: #ffffff;
    --text-color: #2d3748;
    --sidebar-bg: #f7fafc;
    --content-bg: #ffffff;
    --border-color: #e2e8f0;
    --text-secondary: #718096;
    --code-bg: #edf2f7;
}

/* 深色主题 */
body.dark-theme {
    --background-color: #121212;
    --text-color: #ffffff;
    --sidebar-bg: #1a1a1a;
    --content-bg: #121212;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-secondary: #a0aec0;
    --code-bg: #2d3748;
}

/* 主题切换动画 */
body {
    transition: background-color 0.3s, color 0.3s;
} 