/* dark.css — Dark theme for Bridger User Guide
   Colors aligned to bridger-dma.com site palette (site.css).
   Copied to current_theme.css at runtime when dark theme is active. */

:root {
    /* Text */
    --text-primary: #dde2ea;       /* site --text */
    --text-secondary: #7a8fa8;     /* site --text-sub */
    --text-muted: #3b4d61;         /* site --text-muted */
    --text-disabled: #2a3a4a;
    --text-heading: #1a90d8;       /* site --blue-hi */
    --text-link: #0070b8;          /* site --blue */
    --text-code: #a8b8cc;

    /* Backgrounds */
    --bg-primary: #0d1117;         /* site --bg-surface */
    --bg-secondary: #131920;       /* site --bg-raised */
    --bg-header: #131920;          /* site --bg-raised */
    --bg-alternate: #0a0e13;
    --bg-hover: #1b2530;           /* site --border */
    --bg-panel: #0d1117;           /* site --bg-surface */
    --bg-code: #131920;            /* site --bg-raised */

    /* Borders */
    --border-light: #1b2530;       /* site --border */
    --border-medium: #243040;      /* site --border-light */

    /* Callouts */
    --bg-tip: #0d1f0d;
    --accent-tip: #4CAF50;
    --bg-note: #0d1825;
    --accent-note: #1a90d8;        /* site --blue-hi */
    --bg-warning: #1a0f00;
    --accent-warning: #e07b0a;     /* site --warm */

    /* Status */
    --text-error: #FF6464;
    --text-success: #64DC64;
    --text-warning: #e07b0a;       /* site --warm */
}

/* Theme-aware image toggle */
.light-only { display: none !important; }
