Depot
Back officeInventory and dispatch views with a faint green so grey is not the whole story.
Click a swatch to copy its hex.
Do not use this for
Success semantics — the ground is already the success colour.
What was measured
- Closest neighbours
- ΔE00 9.3
- how alike two adjacent swatches look
- Darkest to lightest
- 6.37:1
- WCAG contrast across the set
- Lightness covered
- 50 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 9.3
- worst under protanopia
These two are one colour to a reader with protanopia. Fine while the set is read as an order; never use them to mean two different things without a label or an icon as well.
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.
/* Depot — Inventory and dispatch views with a faint green so grey is not the whole story. */
:root {
--palette-1: #555954;
--palette-2: #787e75;
--palette-3: #9ea499;
--palette-4: #c7cac2;
--palette-5: #f1f3eb;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #f1f3eb;
--text: #555954; /* 6.37:1 on --bg */
--muted: #787e75; /* 3.72:1 on --bg */
--accent: #9ea499; /* 2.28:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Depot
export default {
theme: {
extend: {
colors: {
depot: {
100: "#555954",
200: "#787e75",
300: "#9ea499",
400: "#c7cac2",
500: "#f1f3eb",
},
},
},
},
};For your coding agent · printed from the colours
Use the Depot palette: #555954, #787E75, #9EA499, #C7CAC2, #F1F3EB. It is for this: Inventory and dispatch views with a faint green so grey is not the whole story. Map it as ground #F1F3EB, body text #555954, secondary text #787E75, and one accent #9EA499 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 6.37:1, secondary 3.72:1, accent 2.28:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Success semantics — the ground is already the success 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 9.3 apart on the CIEDE2000 scale, which is too close to tell apart, 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 — ramp from hue 128 — 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.