/* Shared identity tokens. Status colours are separate from the forest accent.
   --brand-primary is the one token operators override (BRAND_PRIMARY_COLOR);
   lib/brand-config.js rewrites it at runtime. Keep this default in step with
   DEFAULT_BRAND_COLOR in api/routes/config.py. The sidebar is dark in both
   themes, so --brand-primary is deliberately not redefined under html.dark. */
:root {
  --brand-ground:#f7f6f0; --brand-surface:#fffefa; --brand-sunk:#eeeee5;
  --brand-ink:#243c31; --brand-muted:#5f6d62; --brand-border:#d9ded1;
  --brand-accent:#285e43; --brand-accent-hover:#1d4832; --brand-accent-soft:#e6eddf; --brand-on-accent:#ffffff;
  --brand-success:#155a82; --brand-success-soft:#e4f1f8;
  --brand-warning:#805212; --brand-warning-soft:#fff1d5;
  --brand-danger:#a33442; --brand-danger-soft:#fbe9eb;
  --brand-overlay:#11251db3; --brand-shadow:0 16px 60px #18362618;
  --brand-sidebar:#20392c; --brand-sidebar-ink:#e7eddf; --brand-sidebar-muted:#b3c5ae; --brand-sidebar-active:#36553e;
  --brand-serif:'Lora',Georgia,serif; --brand-sans:Inter,system-ui,sans-serif;
  --brand-primary:#285e43;
  /* Text drawn on top of --brand-primary. Deliberately NOT redefined under
     html.dark: brand-config.js sets --brand-primary as an inline style on
     <html>, which outranks any html.dark rule, so the primary fill is the
     same colour in both themes and its foreground must be too. Operators
     choosing BRAND_PRIMARY_COLOR own the contrast against this. */
  --brand-on-primary:#ffffff;
}
html.dark {
  --brand-ground:#142019; --brand-surface:#1c2b22; --brand-sunk:#26372b;
  --brand-ink:#edf0e5; --brand-muted:#b4c0ae; --brand-border:#405440;
  --brand-accent:#a2c79e; --brand-accent-hover:#bdd9b6; --brand-accent-soft:#2b4331; --brand-on-accent:#16261b;
  --brand-success:#9bd3f0; --brand-success-soft:#203e50;
  --brand-warning:#f0c57c; --brand-warning-soft:#413521;
  --brand-danger:#ffadb6; --brand-danger-soft:#482b32;
  --brand-overlay:#08120bcc; --brand-shadow:0 16px 60px #00000038;
  --brand-sidebar:#101c14; --brand-sidebar-ink:#e7eddf; --brand-sidebar-muted:#b3c5ae; --brand-sidebar-active:#304a34;
}
