/* tokens.css - the ONLY file that holds colour literals.
   Provenance: seeded k-means (k=4, k-means++ init, seed 4663) run separately on
   (a) body pixels (alpha>=224; only 96 px are exactly 255) of brand/LOGO HOLOPAD PNG...png (IHDR colourtype 6, 2000x2000)
   (b) transparent-region pixels (alpha=0) of that file, colour read from its colourtype 2 twin
       brand/LOGO HOLOPAD PNG.png, which holds the lavender ground the transparent file lacks.
   Every centroid was snapped to the nearest real pixel; its (x,y) in the 2000x2000 grid is beside each value.
   The RGBA file has 3,420,419 non-opaque pixels that are pure black, so every resize is premultiplied
   (sharp premultiplies whenever alpha exists). */
:root {
  --ink: #38107b;       /* logo cluster 1, px(648,1071), share 34.3% */
  --brand: #491e9a;     /* logo cluster 2, px(649,680), share 31.0% */
  --glow: #6135bc;      /* logo cluster 3, px(811,614), share 19.9% */
  --spark: #8051db;     /* logo cluster 4, px(1084,527), share 14.8% */
  --deepveil: #cfc0fc;  /* ground cluster 1, px(1975,1467), share 8.5% */
  --veil: #dad6fd;      /* ground cluster 2, px(362,90), share 12.8% */
  --wash: #e5e9fd;      /* ground cluster 3, px(1946,420), share 33.1% */
  --surface: #edf3fd;   /* ground cluster 4, px(1981,28), share 45.6% */
}
