Bookbinder
ReadingEditorial layouts wanting an oxblood and a bottle green for structure.
Click a swatch to copy its hex.
Do not use this for
Modern SaaS chrome — the pairing reads bound and printed.
What was measured
- Closest neighbours
- ΔE00 6.1
- how alike two adjacent swatches look
- Darkest to lightest
- 3.57:1
- WCAG contrast across the set
- Lightness covered
- 64 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 2.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 secondary text — stated here rather than left for you to discover.
/* Bookbinder — Editorial layouts wanting an oxblood and a bottle green for structure. */
:root {
--palette-1: #610010;
--palette-2: #800019;
--palette-3: #fceeda;
--palette-4: #313e00;
--palette-5: #798757;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text — fix that before shipping. */
--bg: #fceeda;
--text: #610010; /* 12.13:1 on --bg */
--muted: #798757; /* 3.39:1 on --bg */
--accent: #800019; /* 9.51:1 on --bg */
--accent-text: #ffffff;
}Tailwind
// tailwind.config — Bookbinder
export default {
theme: {
extend: {
colors: {
bookbinder: {
100: "#610010",
200: "#800019",
300: "#fceeda",
400: "#313e00",
500: "#798757",
},
},
},
},
};For your coding agent · printed from the colours
Use the Bookbinder palette: #610010, #800019, #FCEEDA, #313E00, #798757. It is for this: Editorial layouts wanting an oxblood and a bottle green for structure. Map it as ground #FCEEDA, body text #610010, secondary text #798757, and one accent #800019 with #FFFFFF printed on it. That mapping does not clear WCAG AA on secondary text — body 12.13:1, secondary 3.39:1, accent 9.51:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Modern SaaS chrome — the pairing reads bound and printed. 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 2.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 — scene from hue 22 and 122 — 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.