/* === 核心配色变量 === */
:root {
    --bg-body: #0f0f0f;
    --bg-sidebar: #161616;
    --bg-card: #1f1f1f;
    --bg-input: #2a2a2a;
    --text-main: #ffffff;
    --text-muted: #d0d0d0;
    --text-hint: #a0a0a0;
    --border-color: #333333;
    --accent-color: #3b82f6;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --clock-day: #fbbf24;
    --clock-night: #60a5fa;
    --danger-red: #ef4444;
}

[data-theme="light"] {
    --bg-body: #f3f4f6;
    --bg-sidebar: #ffffff;
    --bg-card: #ffffff;
    --bg-input: #f9fafb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --text-hint: #6b7280;
    --border-color: #e5e7eb;
    --accent-color: #2563eb;
    --danger-red: #dc2626;
}
