← All palettes
Datum Line
ChartsSparklines and inline data that must read at very small sizes.
Click a swatch to copy its hex.
Do not use this for
Large fills — at scale the set looks like a beach ball.
What was measured
- Closest neighbours
- ΔE00 40
- how alike two adjacent swatches look
- Darkest to lightest
- 7.48:1
- WCAG contrast across the set
- Lightness covered
- 48 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 22.1
- worst under tritanopia
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.
/* Datum Line — Sparklines and inline data that must read at very small sizes. */
:root {
--palette-1: #631d00;
--palette-2: #087687;
--palette-3: #bb6e61;
--palette-4: #dec509;
--palette-5: #07e1d8;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #07e1d8;
--text: #631d00; /* 7.48:1 on --bg */
--muted: #087687; /* 3.23:1 on --bg */
--accent: #dec509; /* 1.06:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Datum Line
export default {
theme: {
extend: {
colors: {
datumline: {
100: "#631d00",
200: "#087687",
300: "#bb6e61",
400: "#dec509",
500: "#07e1d8",
},
},
},
},
};For your coding agent · printed from the colours
Use the Datum Line palette: #631D00, #087687, #BB6E61, #DEC509, #07E1D8. It is for this: Sparklines and inline data that must read at very small sizes. Map it as ground #07E1D8, body text #631D00, secondary text #087687, and one accent #DEC509 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 7.48:1, secondary 3.23:1, accent 1.06:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Large fills — at scale the set looks like a beach ball. 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 22.1 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 212 — 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.