/* BE Semiconductor Industries (Besi) Equity Research Dashboard, per-dashboard theme (color/font tokens).
   Loaded AFTER /assets/css/01..07. Edit Besi's palette and typeface here only.
   Brand accent: a deep teal, distinct from every blue (ASML #1b46b0, CRWV #1d4ed8,
   INTC #0071C5), red (the silicon cluster) and green already in the library, and a
   nod to advanced-packaging precision. --accent #0e6f7c clears white-button-text
   contrast at ~5:1; --accent-bright keeps a brighter teal for non-text highlights. */
:root{
  color-scheme:light;
  --bg:#F6F3E9; --panel:#FFFFFF; --ink:#2E3018; --muted:#5A5A50; --line:#E4DFCF;
  --accent:#0e6f7c; --accent-soft:#e2f1f3; --accent-deep:#0a525c; --accent-bright:#2fa0ad;
  --green:#1f6e3a;  --green-soft:#e3f1e8;
  --red:#a82323;    --red-soft:#fae3e3;
  --amber:#a86b00;  --amber-soft:#fbeed3;
  --chip:#EFEBDC;   --blue:#1b46b0; --teal:#0e6f7c;
  --font-serif:"Iowan Old Style","Palatino Linotype",Palatino,Georgia,serif;
  --font-sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;

  /* Chart palette, primary set to Besi teal. The secondary series uses a copper
     (a nod to the copper-to-copper hybrid bond) and a warm amber so multi-series
     charts stay legible rather than going monochrome-teal.
     Single source of colour truth: editing a token re-colours the matching series. */
  --chart-primary:#0e6f7c;
  --chart-secondary:#b5651d;
  --chart-warm:#a86b00;
  --chart-cool:#1b46b0;
  --chart-positive:#1f6e3a;
  --chart-negative:#a82323;
  --chart-neutral:#5b6470;
  --chart-fill-alpha:0.12;
}
/* Dark-mode accents: lift the teal to a brighter aqua so it reads against dark
   panels; near-black button text passes contrast via --on-accent. */
body.dark{
  --bg:#16130E; --panel:#211C15; --ink:#F2EFE3; --muted:#A8A192; --line:#322B20; --chip:#2A241B;
  --accent:#4fc3d4;
  --accent-soft:#103138;
  --accent-deep:#0e6f7c;
  --accent-bright:#7fe0ee;
}
