← All palettes
Sample Tray
ChartsComparison tables where each column carries its own colour.
Click a swatch to copy its hex.
Do not use this for
Semantic states — none of these hues means anything yet.
What was measured
- Closest neighbours
- ΔE00 22.5
- how alike two adjacent swatches look
- Darkest to lightest
- 6.18:1
- WCAG contrast across the set
- Lightness covered
- 48 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 20.9
- 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.
/* Sample Tray — Comparison tables where each column carries its own colour. */
:root {
--palette-1: #274100;
--palette-2: #9d4183;
--palette-3: #7f8f4b;
--palette-4: #99dc3d;
--palette-5: #eea4ff;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #eea4ff;
--text: #274100; /* 6.18:1 on --bg */
--muted: #9d4183; /* 3.24:1 on --bg */
--accent: #99dc3d; /* 1.11:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Sample Tray
export default {
theme: {
extend: {
colors: {
sampletray: {
100: "#274100",
200: "#9d4183",
300: "#7f8f4b",
400: "#99dc3d",
500: "#eea4ff",
},
},
},
},
};For your coding agent · printed from the colours
Use the Sample Tray palette: #274100, #9D4183, #7F8F4B, #99DC3D, #EEA4FF. It is for this: Comparison tables where each column carries its own colour. Map it as ground #EEA4FF, body text #274100, secondary text #9D4183, and one accent #99DC3D with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 6.18:1, secondary 3.24:1, accent 1.11:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Semantic states — none of these hues means anything yet. 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.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 340 — 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.