Smoke Room
Quiet luxuryDark luxury: a low-key warm grey for spirits, watches, and members' clubs.
Click a swatch to copy its hex.
Do not use this for
Broad consumer products — it reads exclusive by design.
What was measured
- Closest neighbours
- ΔE00 14.3
- how alike two adjacent swatches look
- Darkest to lightest
- 9.88:1
- WCAG contrast across the set
- Lightness covered
- 61 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 11.2
- 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.
/* Smoke Room — Dark luxury: a low-key warm grey for spirits, watches, and members' clubs. */
:root {
--palette-1: #4c3d48;
--palette-2: #7e6470;
--palette-3: #b28f99;
--palette-4: #ddc2c4;
--palette-5: #fffbfa;
/* A suggested mapping, not a token set. It falls short of WCAG AA on the accent — fix that before shipping. */
--bg: #fffbfa;
--text: #4c3d48; /* 9.88:1 on --bg */
--muted: #7e6470; /* 5.18:1 on --bg */
--accent: #b28f99; /* 2.81:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Smoke Room
export default {
theme: {
extend: {
colors: {
smokeroom: {
100: "#4c3d48",
200: "#7e6470",
300: "#b28f99",
400: "#ddc2c4",
500: "#fffbfa",
},
},
},
},
};For your coding agent · printed from the colours
Use the Smoke Room palette: #4C3D48, #7E6470, #B28F99, #DDC2C4, #FFFBFA. It is for this: Dark luxury: a low-key warm grey for spirits, watches, and members' clubs. Map it as ground #FFFBFA, body text #4C3D48, secondary text #7E6470, and one accent #B28F99 with #111111 printed on it. That mapping does not clear WCAG AA on the accent — body 9.88:1, secondary 5.18:1, accent 2.81:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Broad consumer products — it reads exclusive by design. 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.2 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 0 — 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.