← All palettes
Instrument Panel
ChartsDense gauges and small multiples read at a glance.
Click a swatch to copy its hex.
Do not use this for
Long-form reading — nothing here is a text colour.
What was measured
- Closest neighbours
- ΔE00 42.4
- how alike two adjacent swatches look
- Darkest to lightest
- 7.06:1
- WCAG contrast across the set
- Lightness covered
- 48 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 21.9
- 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.
/* Instrument Panel — Dense gauges and small multiples read at a glance. */
:root {
--palette-1: #463600;
--palette-2: #1a67c2;
--palette-3: #e93468;
--palette-4: #feb251;
--palette-5: #10dee7;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #10dee7;
--text: #463600; /* 7.06:1 on --bg */
--muted: #1a67c2; /* 3.35:1 on --bg */
--accent: #e93468; /* 2.45:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Instrument Panel
export default {
theme: {
extend: {
colors: {
instrumentpanel: {
100: "#463600",
200: "#1a67c2",
300: "#e93468",
400: "#feb251",
500: "#10dee7",
},
},
},
},
};For your coding agent · printed from the colours
Use the Instrument Panel palette: #463600, #1A67C2, #E93468, #FEB251, #10DEE7. It is for this: Dense gauges and small multiples read at a glance. Map it as ground #10DEE7, body text #463600, secondary text #1A67C2, and one accent #E93468 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 7.06:1, secondary 3.35:1, accent 2.45:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Long-form reading — nothing here is a text colour. 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 21.9 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 256 — 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.