← All palettes
Plotter
ChartsEngineering charts printed as often as they are viewed.
Click a swatch to copy its hex.
Do not use this for
Consumer surfaces — it reads as a machine's output.
What was measured
- Closest neighbours
- ΔE00 38.6
- how alike two adjacent swatches look
- Darkest to lightest
- 7.49:1
- WCAG contrast across the set
- Lightness covered
- 48 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 19.2
- 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.
/* Plotter — Engineering charts printed as often as they are viewed. */
:root {
--palette-1: #631d00;
--palette-2: #5c5eaf;
--palette-3: #0b9b89;
--palette-4: #ef8600;
--palette-5: #0ae1d8;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #0ae1d8;
--text: #631d00; /* 7.49:1 on --bg */
--muted: #5c5eaf; /* 3.48:1 on --bg */
--accent: #ef8600; /* 1.58:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Plotter
export default {
theme: {
extend: {
colors: {
plotter: {
100: "#631d00",
200: "#5c5eaf",
300: "#0b9b89",
400: "#ef8600",
500: "#0ae1d8",
},
},
},
},
};For your coding agent · printed from the colours
Use the Plotter palette: #631D00, #5C5EAF, #0B9B89, #EF8600, #0AE1D8. It is for this: Engineering charts printed as often as they are viewed. Map it as ground #0AE1D8, body text #631D00, secondary text #5C5EAF, and one accent #EF8600 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 7.49:1, secondary 3.48:1, accent 1.58:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Consumer surfaces — it reads as a machine's output. 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 19.2 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 280 — 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.