Champagne Chalk
Quiet luxuryInvitations and event pages with a gold too pale to be gaudy.
Click a swatch to copy its hex.
Do not use this for
Screens read in sunlight — the range collapses under glare.
What was measured
- Closest neighbours
- ΔE00 12.3
- how alike two adjacent swatches look
- Darkest to lightest
- 5.89:1
- WCAG contrast across the set
- Lightness covered
- 44 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 10.7
- 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 and the accent — stated here rather than left for you to discover.
/* Champagne Chalk — Invitations and event pages with a gold too pale to be gaudy. */
:root {
--palette-1: #56393c;
--palette-2: #7f5449;
--palette-3: #9f7657;
--palette-4: #b19f7f;
--palette-5: #c7c5b0;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #c7c5b0;
--text: #56393c; /* 5.89:1 on --bg */
--muted: #7f5449; /* 3.69:1 on --bg */
--accent: #9f7657; /* 2.31:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Champagne Chalk
export default {
theme: {
extend: {
colors: {
champagnechalk: {
100: "#56393c",
200: "#7f5449",
300: "#9f7657",
400: "#b19f7f",
500: "#c7c5b0",
},
},
},
},
};For your coding agent · printed from the colours
Use the Champagne Chalk palette: #56393C, #7F5449, #9F7657, #B19F7F, #C7C5B0. It is for this: Invitations and event pages with a gold too pale to be gaudy. Map it as ground #C7C5B0, body text #56393C, secondary text #7F5449, and one accent #9F7657 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 5.89:1, secondary 3.69: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: Screens read in sunlight — the range collapses under glare. 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 10.7 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 58 — 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.