/* ASML Holding Equity Research Dashboard, per-dashboard theme (color/font tokens).
   Loaded AFTER /assets/css/01..07. Edit ASML's palette and typeface here only.
   Brand accent: a deep royal blue, ASML's corporate blue, and a nod to EUV
   (13.5 nm extreme-ultraviolet light, the company's crown-jewel technology).
   --accent #1b46b0 clears white-button-text contrast at ~6.7:1; --accent-bright
   keeps a brighter blue for non-text highlights. Distinct from CRWV (#1d4ed8),
   INTC (#0071C5) and MSFT-azure already in the library. */
:root{
  color-scheme:light;
  --bg:#F6F3E9; --panel:#FFFFFF; --ink:#2E3018; --muted:#5A5A50; --line:#E4DFCF;
  --accent:#1b46b0; --accent-soft:#e7ecf8; --accent-deep:#102f80; --accent-bright:#2f5fd0;
  --green:#1f6e3a;  --green-soft:#e3f1e8;
  --red:#a82323;    --red-soft:#fae3e3;
  --amber:#a86b00;  --amber-soft:#fbeed3;
  --chip:#EFEBDC;   --blue:#0d7b8a; --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, primary set to ASML blue. Because the accent is itself blue,
     the secondary series uses a teal (--blue token = #0d7b8a) and a warm amber so
     multi-series charts stay legible rather than going monochrome-blue.
     Single source of colour truth: editing a token re-colours the matching series. */
  --chart-primary:#1b46b0;
  --chart-secondary:#0d7b8a;
  --chart-warm:#a86b00;
  --chart-cool:#2c7873;
  --chart-positive:#1f6e3a;
  --chart-negative:#a82323;
  --chart-neutral:#5b6470;
  --chart-fill-alpha:0.12;
}
/* Dark-mode accents: lift the royal blue to a brighter periwinkle 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:#7da0ff;
  --accent-soft:#18223f;
  --accent-deep:#1b46b0;
  --accent-bright:#a8c0ff;
}
