Headline
Brand pagesSingle-message pages where the top step is the page and the rest is type.
Click a swatch to copy its hex.
Do not use this for
Anything needing a second accent — this palette allows one.
What was measured
- Closest neighbours
- ΔE00 14.1
- how alike two adjacent swatches look
- Darkest to lightest
- 9.78:1
- WCAG contrast across the set
- Lightness covered
- 58 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 11.6
- worst under protanopia
These two are one colour to a reader with protanopia. 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.
/* Headline — Single-message pages where the top step is the page and the rest is type. */
:root {
--palette-1: #690a57;
--palette-2: #a52f73;
--palette-3: #df598b;
--palette-4: #fe9ba9;
--palette-5: #fee4e3;
/* A suggested mapping, not a token set. It falls short of WCAG AA on the accent — fix that before shipping. */
--bg: #fee4e3;
--text: #690a57; /* 9.78:1 on --bg */
--muted: #a52f73; /* 5.35:1 on --bg */
--accent: #df598b; /* 2.93:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Headline
export default {
theme: {
extend: {
colors: {
headline: {
100: "#690a57",
200: "#a52f73",
300: "#df598b",
400: "#fe9ba9",
500: "#fee4e3",
},
},
},
},
};For your coding agent · printed from the colours
Use the Headline palette: #690A57, #A52F73, #DF598B, #FE9BA9, #FEE4E3. It is for this: Single-message pages where the top step is the page and the rest is type. Map it as ground #FEE4E3, body text #690A57, secondary text #A52F73, and one accent #DF598B with #111111 printed on it. That mapping does not clear WCAG AA on the accent — body 9.78:1, secondary 5.35:1, accent 2.93: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 second accent — this palette allows one. 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 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.