/* Samsung Electronics Co. (KRX 005930) Equity Research Dashboard: per-dashboard theme (color/font tokens).
   Loaded AFTER /assets/css/01..07. Edit Samsung's palette and typeface here only.
   Brand accent: Samsung's signature deep navy blue (#1428A0), a darker/more saturated navy than the
   other blues already in the library (ASML #1b46b0, INTC #0071C5, MSFT #0078D4, NTNX #024DA1,
   CRWV #1d4ed8) so it stays distinguishable. --accent #1428A0 clears white-button-text contrast
   comfortably (~9:1); dark mode lifts to a brighter royal blue. The chart secondary is SK's burnt
   orange, a deliberate nod to the memory-peer 000660 dashboard that this one is the foil to. */
:root{
  color-scheme:light;
  --bg:#F5F6FA; --panel:#FFFFFF; --ink:#141a2e; --muted:#565d73; --line:#E1E4EE;
  --accent:#1428A0; --accent-soft:#e6e9f7; --accent-deep:#0d1c73; --accent-bright:#2e46c8;
  --green:#1f6e3a;  --green-soft:#e3f1e8;
  --red:#a82323;    --red-soft:#fae3e3;
  --amber:#a86b00;  --amber-soft:#fbeed3;
  --chip:#ECEEF6;   --blue:#1428A0; --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 Samsung navy. The secondary is SK's burnt orange (the memory-peer
     counterpoint, so Samsung-vs-SK-hynix comparisons read intuitively), plus a warm amber and a cool
     teal so multi-series SOTP charts stay legible. Single source of colour truth: editing a token
     re-colours the matching series. */
  --chart-primary:#1428A0;
  --chart-secondary:#c2410c;
  --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 navy to a brighter royal blue so it reads against dark panels; white
   button text passes contrast via --on-accent (set in the shared cascade). */
body.dark{
  --bg:#0c1020; --panel:#141a2e; --ink:#EEF0F8; --muted:#9aa2bd; --line:#242c47; --chip:#1b2238;
  --accent:#4263eb;
  --accent-soft:#1a2352;
  --accent-deep:#1428A0;
  --accent-bright:#748ffc;
}
