/* 主题颜色定义 */
:root {
    --primary-color: #349592;
    --background-color: #ffffff;
    --text-color: #333;
    --sidebar-bg: #349592;
}

/* 🌙 深色模式 */
.dark-mode {
    --primary-color: #2a7f7c;
    --background-color: #121212;
    --text-color: #e0e0e0;
    --sidebar-bg: #1e4b48;
}