← All palettes

Readout

Charts

Multi-metric panels that need five equals and no favourite.

Click a swatch to copy its hex.

Do not use this for

Storytelling — a chart palette has no narrative order.

What was measured

Closest neighbours
ΔE00 51.6
how alike two adjacent swatches look
Darkest to lightest
6.87:1
WCAG contrast across the set
Lightness covered
48 pts
of OKLCH lightness, 0–100
Under colour blindness
ΔE00 20.5
worst under deuteranopia

Every pair here survives protanopia, deuteranopia and tritanopia, so these five can stand for five different things.

A suggested mapping · derived, then measured

Five colours are not an interface, so this is an offer rather than a token set. It does not clear WCAG AA on secondary text and the accent — stated here rather than left for you to discover.

/* Readout — Multi-metric panels that need five equals and no favourite. */
:root {
  --palette-1: #60005d;
  --palette-2: #5a7403;
  --palette-3: #c85e83;
  --palette-4: #05e79a;
  --palette-5: #f7a2ef;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
  --bg: #f7a2ef;
  --text: #60005d;        /* 6.87:1 on --bg */
  --muted: #5a7403;      /* 2.89:1 on --bg */
  --accent: #05e79a;     /* 1.13:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Readout
export default {
  theme: {
    extend: {
      colors: {
        readout: {
        100: "#60005d",
        200: "#5a7403",
        300: "#c85e83",
        400: "#05e79a",
        500: "#f7a2ef",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Readout palette: #60005D, #5A7403, #C85E83, #05E79A, #F7A2EF.

It is for this: Multi-metric panels that need five equals and no favourite.

Map it as ground #F7A2EF, body text #60005D, secondary text #5A7403, and one accent #05E79A with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 6.87:1, secondary 2.89:1, accent 1.13:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Storytelling — a chart palette has no narrative order.

Do not add a sixth colour, do not tint the greys toward a second hue, and do not carry meaning on hue alone — once colour vision is taken away the closest two of these sit only 20.5 apart on the CIEDE2000 scale, so pair every coloured state with a label or an icon.

How this palette was built · no hex was chosen by hand

The catalog states a recipe — series from hue 124 — and the five colours are derived from it in OKLCH, where a step of lightness is a step your eye agrees with rather than one the hex numbers agree with. That is why the numbers above are properties of this palette rather than claims about it.

Others for the same job