/* Forest Night Theme */
/* Generated from palette.json - do not edit directly */
/* Import: @import url('https://brand.arusty.dev/assets/colors/themes/forest-night.css'); */

/* Light mode (default) */
:root,
[data-theme="light"] {
  --color-background: #ffffff;
  --color-surface: #f6f8fa;
  --color-surface-elevated: #ffffff;
  --color-primary: #1a7f37;
  --color-primary-muted: #238636;
  --color-accent: #2ea043;
  --color-accent-muted: #3fb950;
  --color-warm: #bb8009;
  --color-warm-muted: #d29922;
  --color-text: #1f2328;
  --color-text-muted: #656d76;
  --color-text-subtle: #8b949e;
  --color-border: #d0d7de;
  --color-border-muted: #e6edf3;

  /* Semantic */
  --color-success: #3fb950;
  --color-warning: #d29922;
  --color-error: #f85149;
  --color-info: #58a6ff;
}

/* Dark mode */
[data-theme="dark"] {
  --color-background: #0d1117;
  --color-surface: #161b22;
  --color-surface-elevated: #1c2128;
  --color-primary: #238636;
  --color-primary-muted: #1a7f37;
  --color-accent: #3fb950;
  --color-accent-muted: #2ea043;
  --color-warm: #d29922;
  --color-warm-muted: #bb8009;
  --color-text: #e6edf3;
  --color-text-muted: #8b949e;
  --color-text-subtle: #6e7681;
  --color-border: #30363d;
  --color-border-muted: #21262d;
}

/* Auto dark mode (respects system preference when no data-theme set) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-background: #0d1117;
    --color-surface: #161b22;
    --color-surface-elevated: #1c2128;
    --color-primary: #238636;
    --color-primary-muted: #1a7f37;
    --color-accent: #3fb950;
    --color-accent-muted: #2ea043;
    --color-warm: #d29922;
    --color-warm-muted: #bb8009;
    --color-text: #e6edf3;
    --color-text-muted: #8b949e;
    --color-text-subtle: #6e7681;
    --color-border: #30363d;
    --color-border-muted: #21262d;
  }
}
