Records Room
Back officeArchive and audit tools; a cool grey with the faintest plum in it.
Click a swatch to copy its hex.
Do not use this for
Charts, hero sections, anywhere colour must lead.
What was measured
- Closest neighbours
- ΔE00 10.5
- how alike two adjacent swatches look
- Darkest to lightest
- 6.4:1
- WCAG contrast across the set
- Lightness covered
- 50 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 9.3
- worst under tritanopia
These two are one colour to a reader with tritanopia. 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.
/* Records Room — Archive and audit tools; a cool grey with the faintest plum in it. */
:root {
--palette-1: #635260;
--palette-2: #88748c;
--palette-3: #aa9aba;
--palette-4: #cac5de;
--palette-5: #f0f0ff;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #f0f0ff;
--text: #635260; /* 6.4:1 on --bg */
--muted: #88748c; /* 3.78:1 on --bg */
--accent: #aa9aba; /* 2.31:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Records Room
export default {
theme: {
extend: {
colors: {
recordsroom: {
100: "#635260",
200: "#88748c",
300: "#aa9aba",
400: "#cac5de",
500: "#f0f0ff",
},
},
},
},
};For your coding agent · printed from the colours
Use the Records Room palette: #635260, #88748C, #AA9ABA, #CAC5DE, #F0F0FF. It is for this: Archive and audit tools; a cool grey with the faintest plum in it. Map it as ground #F0F0FF, body text #635260, secondary text #88748C, and one accent #AA9ABA with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 6.4:1, secondary 3.78:1, accent 2.31:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Charts, hero sections, anywhere colour must lead. 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 308 — 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.