
/* theme.css */

:root {
  --color-bg: #f6f6f5;
  --color-surface: #ffffff;
  --color-border: #e6e6e6;
  --color-text: #1c1c1c;
  --color-text-muted: #6b6b6b;
  --color-accent: #4b019e;
}

[data-theme="dark"] {
  --color-bg: #1e1e1e;
  --color-surface: #252525;
  --color-border: #363636;
  --color-text: #f0f0f0;
  --color-text-muted: #909090;
  --color-accent: #9b4dff;
}

