/* Spring Garden theme */
:root {
  --bg: #f4f1eb;           /* warm parchment */
  --text: #3d4a3d;          /* deep sage */
  --accent: #5a8a5a;        /* garden green */
  --prompt: #7a9a6a;        /* soft moss */
  --dim: #a8b8a0;           /* faded leaf */
  --highlight: #3d6b3d;     /* deep fern */
  --cursor: #5a8a5a;        /* garden green */
  --error: #c45a5a;         /* muted rose */
  --info: #5a7a8a;          /* slate blue */
  --warm: #8a7a5a;          /* warm amber */
  --selection-bg: #5a8a5a22; /* green tint */
  --widget-bg: #ede9e0;     /* slightly darker parchment */
  --widget-border: #d4cebc;  /* warm border */
  --bar-fill: #5a8a5a;      /* garden green */
  --tag-bg: #5a8a5a18;      /* subtle green tint */
}

/* Amber theme */
[data-theme="amber"] {
  --bg: #1a1510;
  --text: #d4a857;
  --accent: #c8962e;
  --prompt: #a87d28;
  --dim: #6b5a30;
  --highlight: #e8b84a;
  --cursor: #c8962e;
  --error: #c45a5a;
  --info: #8a7a5a;
  --warm: #d4a857;
  --selection-bg: #c8962e22;
  --widget-bg: #1f1a12;
  --widget-border: #3a3020;
  --bar-fill: #c8962e;
  --tag-bg: #c8962e18;
}

/* Blue theme */
[data-theme="blue"] {
  --bg: #0a1628;
  --text: #a8c4e0;
  --accent: #4a90d9;
  --prompt: #3a7ac0;
  --dim: #3a5070;
  --highlight: #6ab0f0;
  --cursor: #4a90d9;
  --error: #d96a6a;
  --info: #4a90d9;
  --warm: #d9a84a;
  --selection-bg: #4a90d922;
  --widget-bg: #0e1c32;
  --widget-border: #1a3050;
  --bar-fill: #4a90d9;
  --tag-bg: #4a90d918;
}

/* Matrix theme */
[data-theme="matrix"] {
  --bg: #0a0a0a;
  --text: #33ff33;
  --accent: #00cc00;
  --prompt: #009900;
  --dim: #1a6b1a;
  --highlight: #66ff66;
  --cursor: #00cc00;
  --error: #ff3333;
  --info: #33cc33;
  --warm: #99cc33;
  --selection-bg: #00cc0022;
  --widget-bg: #0f0f0f;
  --widget-border: #1a3a1a;
  --bar-fill: #00cc00;
  --tag-bg: #00cc0018;
}

/* Selection styling */
::selection {
  background: var(--selection-bg);
  color: var(--text);
}
