/* dark.css — Dark theme for Bridger User Guide
   Colors sourced from AppTheme.cs dark mode values.
   Copied to current_theme.css at runtime when dark theme is active. */

:root {
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #B4B4B4;
    --text-muted: #8C8C8C;
    --text-disabled: #646464;
    --text-heading: #8CC8FF;
    --text-link: #64B4FF;
    --text-code: #D4D4D4;

    /* Backgrounds */
    --bg-primary: #1E1E1E;
    --bg-secondary: #2D2D2D;
    --bg-header: #323232;
    --bg-alternate: #262626;
    --bg-hover: #373737;
    --bg-panel: #282828;
    --bg-code: #2D2D2D;

    /* Borders */
    --border-light: #3C3C3C;
    --border-medium: #505050;

    /* Callouts */
    --bg-tip: #1B2E1B;
    --accent-tip: #4CAF50;
    --bg-note: #1A2636;
    --accent-note: #64B4FF;
    --bg-warning: #2E2810;
    --accent-warning: #FFC864;

    /* Status (for future use in content) */
    --text-error: #FF6464;
    --text-success: #64DC64;
    --text-warning: #FFC864;
}

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