Reading Room
ReadingBook-length text where the page is warm and the ink is nearly black.
Click a swatch to copy its hex.
Do not use this for
Anything needing a call to action — no step steps forward.
What was measured
- Closest neighbours
- ΔE00 11.8
- how alike two adjacent swatches look
- Darkest to lightest
- 11.05:1
- WCAG contrast across the set
- Lightness covered
- 64 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 11.6
- 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 the accent — stated here rather than left for you to discover.
/* Reading Room — Book-length text where the page is warm and the ink is nearly black. */
:root {
--palette-1: #3c3733;
--palette-2: #6a615d;
--palette-3: #9b8f8c;
--palette-4: #cbc2c1;
--palette-5: #fef6f7;
/* A suggested mapping, not a token set. It falls short of WCAG AA on the accent — fix that before shipping. */
--bg: #fef6f7;
--text: #3c3733; /* 11.05:1 on --bg */
--muted: #6a615d; /* 5.67:1 on --bg */
--accent: #9b8f8c; /* 2.95:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Reading Room
export default {
theme: {
extend: {
colors: {
readingroom: {
100: "#3c3733",
200: "#6a615d",
300: "#9b8f8c",
400: "#cbc2c1",
500: "#fef6f7",
},
},
},
},
};For your coding agent · printed from the colours
Use the Reading Room palette: #3C3733, #6A615D, #9B8F8C, #CBC2C1, #FEF6F7. It is for this: Book-length text where the page is warm and the ink is nearly black. Map it as ground #FEF6F7, body text #3C3733, secondary text #6A615D, and one accent #9B8F8C with #111111 printed on it. That mapping does not clear WCAG AA on the accent — body 11.05:1, secondary 5.67:1, accent 2.95:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Anything needing a call to action — no step steps forward. 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 11.6 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 34 — 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.