Test Bench
ChartsDark-mode dashboards; the set is pitched below the ground it sits on.
Click a swatch to copy its hex.
Do not use this for
Light backgrounds — the darkest steps disappear into the border.
What was measured
- Closest neighbours
- ΔE00 41.3
- how alike two adjacent swatches look
- Darkest to lightest
- 7.8:1
- WCAG contrast across the set
- Lightness covered
- 48 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 21.8
- 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.
/* Test Bench — Dark-mode dashboards; the set is pitched below the ground it sits on. */
:root {
--palette-1: #47127d;
--palette-2: #5b2700;
--palette-3: #057c5d;
--palette-4: #ceb5ff;
--palette-5: #49e49f;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #49e49f;
--text: #47127d; /* 7.8:1 on --bg */
--muted: #057c5d; /* 3.18:1 on --bg */
--accent: #ceb5ff; /* 1.1:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Test Bench
export default {
theme: {
extend: {
colors: {
testbench: {
100: "#47127d",
200: "#5b2700",
300: "#057c5d",
400: "#ceb5ff",
500: "#49e49f",
},
},
},
},
};For your coding agent · printed from the colours
Use the Test Bench palette: #47127D, #5B2700, #057C5D, #CEB5FF, #49E49F. It is for this: Dark-mode dashboards; the set is pitched below the ground it sits on. Map it as ground #49E49F, body text #47127D, secondary text #057C5D, and one accent #CEB5FF with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 7.8:1, secondary 3.18:1, accent 1.1:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Light backgrounds — the darkest steps disappear into the border. 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.8 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 168 — 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.