/* ============================================================
   SPACE
   ------------------------------------------------------------
   The token name IS the pixel value: --space-24 is 24px. No
   mental arithmetic, no step-number-to-pixel lookup table.

   Found in the designs: 2 4 5 6 7 8 10 11 12 16 20 24 32 49 60.
   The 5, 7, 11 and 49 were eyeballing artefacts and were
   normalised to 6, 6, 12 and 48 (see design-system/audit.md §3).
   ============================================================ */

:root {
  --space-0:  0;
  --space-2:  2px;
  --space-4:  4px;
  --space-6:  6px;
  --space-8:  8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
}
