Signal Set
ChartsA five-series line chart where the reader must never trace the wrong line.
Click a swatch to copy its hex.
Do not use this for
Page chrome — these are data colours, too loud for furniture.
What was measured
- Closest neighbours
- ΔE00 46.6
- how alike two adjacent swatches look
- Darkest to lightest
- 5.08:1
- WCAG contrast across the set
- Lightness covered
- 40 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 20.3
- 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.
/* Signal Set — A five-series line chart where the reader must never trace the wrong line. */
:root {
--palette-1: #852a00;
--palette-2: #00729b;
--palette-3: #d15b60;
--palette-4: #10dee7;
--palette-5: #fcb60a;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #fcb60a;
--text: #852a00; /* 5.08:1 on --bg */
--muted: #00729b; /* 3.05:1 on --bg */
--accent: #d15b60; /* 2.2:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Signal Set
export default {
theme: {
extend: {
colors: {
signalset: {
100: "#852a00",
200: "#00729b",
300: "#d15b60",
400: "#10dee7",
500: "#fcb60a",
},
},
},
},
};For your coding agent · printed from the colours
Use the Signal Set palette: #852A00, #00729B, #D15B60, #10DEE7, #FCB60A. It is for this: A five-series line chart where the reader must never trace the wrong line. Map it as ground #FCB60A, body text #852A00, secondary text #00729B, and one accent #D15B60 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 5.08:1, secondary 3.05:1, accent 2.2:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Page chrome — these are data colours, too loud for furniture. 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.3 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 232 — 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.