Alabaster
Quiet luxuryArchitecture and design portfolios; a near-white with a warm floor.
Click a swatch to copy its hex.
Do not use this for
Anything with status — there is no colour budget left.
What was measured
- Closest neighbours
- ΔE00 8.1
- how alike two adjacent swatches look
- Darkest to lightest
- 3.62:1
- WCAG contrast across the set
- Lightness covered
- 35 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 7.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 body text and secondary text and the accent — stated here rather than left for you to discover.
/* Alabaster — Architecture and design portfolios; a near-white with a warm floor. */
:root {
--palette-1: #6c7160;
--palette-2: #8a8b6f;
--palette-3: #aba384;
--palette-4: #c8bda8;
--palette-5: #e3d9ce;
/* 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: #e3d9ce;
--text: #6c7160; /* 3.62:1 on --bg */
--muted: #8a8b6f; /* 2.51:1 on --bg */
--accent: #aba384; /* 1.82:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Alabaster
export default {
theme: {
extend: {
colors: {
alabaster: {
100: "#6c7160",
200: "#8a8b6f",
300: "#aba384",
400: "#c8bda8",
500: "#e3d9ce",
},
},
},
},
};For your coding agent · printed from the colours
Use the Alabaster palette: #6C7160, #8A8B6F, #ABA384, #C8BDA8, #E3D9CE. It is for this: Architecture and design portfolios; a near-white with a warm floor. Map it as ground #E3D9CE, body text #6C7160, secondary text #8A8B6F, and one accent #ABA384 with #111111 printed on it. That mapping does not clear WCAG AA on body text and secondary text and the accent — body 3.62:1, secondary 2.51:1, accent 1.82:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Anything with status — there is no colour budget left. 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 7.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 96 — 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.