/* TaDELS RAG 主題色（集中管理）
   現用：品牌綠 · 乾淨中性底。
   舊版藍色保留在下方，要切回去：在 <html> 加 data-palette="classic"（例如 <html lang="zh-TW" data-palette="classic">）。 */

/* ========== 現用：綠 ========== */
:root{
  --bg:#f5f5f1; --surface:#ffffff; --surface2:#eeeeea; --border:#e3e2db;
  --text:#20212b; --text2:#6b6b72; --accent:#5f9330; --accent-rgb:95,147,48;
  --green:#3da55b; --red:#c0492e; --yellow:#c08a1e;
  --user-bg:#eef1e6; --bot-bg:#ffffff; --glass-border:rgba(0,0,0,.08);
}
@media (prefers-color-scheme: dark){
  :root{
    --bg:#1a1926; --surface:#242233; --surface2:#2e2b3f; --border:#38354b;
    --text:#e9e8ef; --text2:#9b99a7; --accent:#8fb63f; --accent-rgb:143,182,63;
    --green:#4ade80; --red:#f0876b; --yellow:#fbbf24;
    --user-bg:#2a2840; --bot-bg:#242233; --glass-border:rgba(255,255,255,.08);
  }
}
:root[data-theme="light"]{
  --bg:#f5f5f1; --surface:#ffffff; --surface2:#eeeeea; --border:#e3e2db;
  --text:#20212b; --text2:#6b6b72; --accent:#5f9330; --accent-rgb:95,147,48;
  --green:#3da55b; --red:#c0492e; --yellow:#c08a1e;
  --user-bg:#eef1e6; --bot-bg:#ffffff; --glass-border:rgba(0,0,0,.08);
}
:root[data-theme="dark"]{
  --bg:#1a1926; --surface:#242233; --surface2:#2e2b3f; --border:#38354b;
  --text:#e9e8ef; --text2:#9b99a7; --accent:#8fb63f; --accent-rgb:143,182,63;
  --green:#4ade80; --red:#f0876b; --yellow:#fbbf24;
  --user-bg:#2a2840; --bot-bg:#242233; --glass-border:rgba(255,255,255,.08);
}

/* ========== 舊版：藍（備援；<html data-palette="classic"> 切回）========== */
:root[data-palette="classic"]{
  --bg:#fcfbf7; --surface:#ffffff; --surface2:#f1efe9; --border:#e0ddd3;
  --text:#1f1c17; --text2:#6b6356; --accent:#4a63d8; --accent-rgb:74,99,216;
  --green:#3da55b; --red:#dc4c4c; --yellow:#c08a1e;
  --user-bg:#e3ebfa; --bot-bg:#ffffff; --glass-border:rgba(0,0,0,.08);
}
@media (prefers-color-scheme: dark){
  :root[data-palette="classic"]{
    --bg:#0f1117; --surface:#1a1d27; --surface2:#242836; --border:#2e3345;
    --text:#e1e4ed; --text2:#8b90a0; --accent:#6c8cff; --accent-rgb:108,140,255;
    --green:#4ade80; --red:#f87171; --yellow:#fbbf24;
    --user-bg:#1e3a5f; --bot-bg:#1a1d27; --glass-border:rgba(255,255,255,.08);
  }
}
:root[data-palette="classic"][data-theme="light"]{
  --bg:#fcfbf7; --surface:#ffffff; --surface2:#f1efe9; --border:#e0ddd3;
  --text:#1f1c17; --text2:#6b6356; --accent:#4a63d8; --accent-rgb:74,99,216;
  --green:#3da55b; --red:#dc4c4c; --yellow:#c08a1e;
  --user-bg:#e3ebfa; --bot-bg:#ffffff; --glass-border:rgba(0,0,0,.08);
}
:root[data-palette="classic"][data-theme="dark"]{
  --bg:#0f1117; --surface:#1a1d27; --surface2:#242836; --border:#2e3345;
  --text:#e1e4ed; --text2:#8b90a0; --accent:#6c8cff; --accent-rgb:108,140,255;
  --green:#4ade80; --red:#f87171; --yellow:#fbbf24;
  --user-bg:#1e3a5f; --bot-bg:#1a1d27; --glass-border:rgba(255,255,255,.08);
}
