← All palettes
Field Survey
ChartsStacked areas and maps; the lightness ladder survives greyscale printing.
Click a swatch to copy its hex.
Do not use this for
Brand work — no one colour is allowed to lead.
What was measured
- Closest neighbours
- ΔE00 24.3
- how alike two adjacent swatches look
- Darkest to lightest
- 7.88:1
- WCAG contrast across the set
- Lightness covered
- 48 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 23
- 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.
/* Field Survey — Stacked areas and maps; the lightness ladder survives greyscale printing. */
:root {
--palette-1: #530078;
--palette-2: #257c3a;
--palette-3: #bf6291;
--palette-4: #dcaefe;
--palette-5: #2fe69c;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #2fe69c;
--text: #530078; /* 7.88:1 on --bg */
--muted: #257c3a; /* 3.21:1 on --bg */
--accent: #bf6291; /* 2.41:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Field Survey
export default {
theme: {
extend: {
colors: {
fieldsurvey: {
100: "#530078",
200: "#257c3a",
300: "#bf6291",
400: "#dcaefe",
500: "#2fe69c",
},
},
},
},
};For your coding agent · printed from the colours
Use the Field Survey palette: #530078, #257C3A, #BF6291, #DCAEFE, #2FE69C. It is for this: Stacked areas and maps; the lightness ladder survives greyscale printing. Map it as ground #2FE69C, body text #530078, secondary text #257C3A, and one accent #BF6291 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 7.88:1, secondary 3.21:1, accent 2.41:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Brand work — no one colour is allowed to lead. 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 23 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 148 — 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.