Ledger Grey
Back officeAccounting screens; a warm grey so the figures do not look cold.
Click a swatch to copy its hex.
Do not use this for
Charts — two of these steps are indistinguishable at 12px.
What was measured
- Closest neighbours
- ΔE00 9.1
- how alike two adjacent swatches look
- Darkest to lightest
- 4.29:1
- WCAG contrast across the set
- Lightness covered
- 38 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 8.9
- worst under deuteranopia
These two are one colour to a reader with deuteranopia. 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 body text and secondary text and the accent — stated here rather than left for you to discover.
/* Ledger Grey — Accounting screens; a warm grey so the figures do not look cold. */
:root {
--palette-1: #5f5845;
--palette-2: #827056;
--palette-3: #a48a6f;
--palette-4: #bfa798;
--palette-5: #d7c6c0;
/* A suggested mapping, not a token set. It falls short of WCAG AA on body text and secondary text and the accent — fix that before shipping. */
--bg: #d7c6c0;
--text: #5f5845; /* 4.29:1 on --bg */
--muted: #827056; /* 2.89:1 on --bg */
--accent: #a48a6f; /* 1.98:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Ledger Grey
export default {
theme: {
extend: {
colors: {
ledgergrey: {
100: "#5f5845",
200: "#827056",
300: "#a48a6f",
400: "#bfa798",
500: "#d7c6c0",
},
},
},
},
};For your coding agent · printed from the colours
Use the Ledger Grey palette: #5F5845, #827056, #A48A6F, #BFA798, #D7C6C0. It is for this: Accounting screens; a warm grey so the figures do not look cold. Map it as ground #D7C6C0, body text #5F5845, secondary text #827056, and one accent #A48A6F with #111111 printed on it. That mapping does not clear WCAG AA on body text and secondary text and the accent — body 4.29:1, secondary 2.89:1, accent 1.98:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Charts — two of these steps are indistinguishable at 12px. 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 8.9 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 66 — 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.