/* SK hynix Inc. (KRX 000660) Equity Research Dashboard: per-dashboard theme (color/font tokens).
   Loaded AFTER /assets/css/01..07. Edit SK hynix's palette and typeface here only.
   Brand accent: SK's signature burnt orange, distinct from the memory-peer Micron burgundy
   (#7a1a2f), the red silicon cluster, Amazon's brighter #ff9900, and Micron's burgundy. --accent
   #c2410c clears white-button-text contrast at ~5:1; dark mode lifts to a brighter orange. */
:root{
  color-scheme:light;
  --bg:#F7F4EE; --panel:#FFFFFF; --ink:#241a12; --muted:#5b5348; --line:#E7DFD2;
  --accent:#c2410c; --accent-soft:#fbeadf; --accent-deep:#9a330a; --accent-bright:#ea580c;
  --green:#1f6e3a;  --green-soft:#e3f1e8;
  --red:#a82323;    --red-soft:#fae3e3;
  --amber:#a86b00;  --amber-soft:#fbeed3;
  --chip:#F0EADF;   --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 SK burnt orange. The secondary is a deep blue (a cool DRAM/logic
     counterpoint) and a warm amber, so multi-series charts stay legible rather than monochrome.
     Single source of colour truth: editing a token re-colours the matching series. */
  --chart-primary:#c2410c;
  --chart-secondary:#1b46b0;
  --chart-warm:#a86b00;
  --chart-cool:#0e6f7c;
  --chart-positive:#1f6e3a;
  --chart-negative:#a82323;
  --chart-neutral:#5b6470;
  --chart-fill-alpha:0.12;
}
/* Dark-mode accents: lift the orange so it reads against dark panels; near-black button text
   passes contrast via --on-accent (set in the shared cascade). */
body.dark{
  --bg:#171009; --panel:#221812; --ink:#F3EEE4; --muted:#AEA394; --line:#332318; --chip:#2B1E14;
  --accent:#f97316;
  --accent-soft:#3a2110;
  --accent-deep:#c2410c;
  --accent-bright:#fdba74;
}
