/*
 * Interplanetary UI - Planetary Theme
 * Sci-Fi Terminal. Warm amber on dark black.
 */

:root {
  /* Backgrounds */
  --theme-bg-dark: #09080B;
  --theme-bg-light: #FFFBEB;
  --theme-bg-off-dark: #131217;
  --theme-bg-off-light: #F5F0E0;

  /* Text */
  --theme-text-dark: #B3C9D4;
  --theme-text-light: #09080B;
  --theme-text-off-dark: #7A8A94;
  --theme-text-off-light: #4A4A4A;

  /* Accent */
  --theme-accent-dark: #EFA319;
  --theme-accent-light: #D48C0F;

  /* Status */
  --color-success: #00FF00;
  --color-error: #FF0000;
  --color-warning: #FFFF00;
  --color-info: #00FFFF;

  /* Supplementary */
  --theme-blue: #0080FF;
  --theme-pink: #FF00FF;
  --theme-purple: #8000FF;
  --theme-lime: #80FF00;
  --theme-teal: #00FF80;
  --theme-orange: #FF8000;
}

/* Light mode status adjustments */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --color-success: #00C853;
    --color-error: #FF1744;
    --color-warning: #FFD600;
    --color-info: #00B8D4;
  }
}

[data-theme="light"] {
  --color-success: #00C853;
  --color-error: #FF1744;
  --color-warning: #FFD600;
  --color-info: #00B8D4;
}
