/*
  Komo palette. The ONLY file in the project allowed to hold colour literals.

  Provenance: brand/LOGO KOMO PNG...png (2000x2000, IHDR colour type 6 truecolour+alpha,
  opaque pixels carry alpha 253). k-means (k=8, RGB, sampled grid, 12 iterations) over the
  opaque art gave 8 clusters; each colour below is the real pixel closest to its cluster
  centroid, snapped to an actual coordinate (x,y). scripts/gates.mjs re-reads each
  coordinate and fails the build if the pixel differs. --accent-ink is the most common
  light-blue pixel in the glow ring (b-r>=30, b>=170) picked for text contrast.
  Nothing here is invented or blended: shades in styles.css use color-mix() on these.
*/
:root {
  color-scheme: dark;
  --bg: #05070a;          /* px 740,770  cluster 5, share 2.0% */
  --card: #111722;        /* px 1210,710 cluster 4, share 2.1% */
  --line: #283040;        /* px 950,1450 cluster 2, share 3.6% */
  --line-strong: #49556e; /* px 730,1170 cluster 3, share 2.3% */
  --muted: #828ca1;       /* px 1140,1100 cluster 6, share 1.8% */
  --ink-soft: #bdc4d3;    /* px 1000,710 cluster 8, share 0.4% */
  --ink: #f6f8fa;         /* px 1200,770 cluster 7, share 1.5% */
  --accent: #507cc2;      /* px 1160,790 bluest opaque pixel of the glow */
  --accent-ink: #899ec1;  /* px 813,487  glow-ring light blue, text-safe */
}
