/* MBLY Equity Research Dashboard, per-dashboard theme (color/font tokens).
   Loaded AFTER /assets/css/01..07. Edit Mobileye's palette and typeface here only.
   Accent: institutional slate-blue, distinct from prior 8 dashboard accents,
   signals the cautious-balanced posture of the Hold rating (operational
   recovery meets Intel-overhang cap). */
:root{
  color-scheme:light;
  --bg:#F6F3E9; --panel:#FFFFFF; --ink:#2E3018; --muted:#5A5A50; --line:#E4DFCF;
  --accent:#3b5b85; --accent-soft:#D7DDE4; --accent-deep:#1f3457; --accent-bright:#f0c969;
  --green:#1f6e3a;  --green-soft:#e3f1e8;
  --red:#a82323;    --red-soft:#fae3e3;
  --amber:#a86b00;  --amber-soft:#fbeed3;
  --chip:#EFEBDC;   --blue:#1f4e79; --teal:#2c7873;
  --font-serif:"Iowan Old Style","Palatino Linotype",Palatino,Georgia,serif;
  --font-sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;

  /* Chart palette, read by getChartPalette() and merged into dashboard.js's `colors`.
     Values are IDENTICAL to MBLY's previous hardcoded chart literals (pure refactor). */
  --chart-primary:#3b5b85;
  --chart-secondary:#1f4e79;
  --chart-warm:#a86b00;
  --chart-cool:#2c7873;
  --chart-positive:#1f6e3a;
  --chart-negative:#a82323;
  --chart-neutral:#5b6470;
  --chart-fill-alpha:0.12;
}
/* Dark-mode accent: slate-blue brightened toward sky for legibility against dark panels. */
body.dark{
  --bg:#16130E; --panel:#211C15; --ink:#F2EFE3; --muted:#A8A192; --line:#322B20; --chip:#2A241B;
  --accent:#8fb3d4;
  --accent-soft:#272E36;
  --accent-deep:#0f1a2a;
  --accent-bright:#f0c969;
}
