← All palettes

Poster Paint

Brand pages

Bold editorial covers where the colours are the illustration.

Click a swatch to copy its hex.

Do not use this for

Product chrome — nothing here recedes.

What was measured

Closest neighbours
ΔE00 21.7
how alike two adjacent swatches look
Darkest to lightest
3.14:1
WCAG contrast across the set
Lightness covered
24 pts
of OKLCH lightness, 0–100
Under colour blindness
ΔE00 5.9
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 body text and secondary text and the accent — stated here rather than left for you to discover.

/* Poster Paint — Bold editorial covers where the colours are the illustration. */
:root {
  --palette-1: #ae043c;
  --palette-2: #a85504;
  --palette-3: #987e04;
  --palette-4: #5ea905;
  --palette-5: #08c09e;

  /* 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: #08c09e;
  --text: #ae043c;        /* 3.14:1 on --bg */
  --muted: #a85504;      /* 2.28:1 on --bg */
  --accent: #5ea905;     /* 1.26:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Poster Paint
export default {
  theme: {
    extend: {
      colors: {
        posterpaint: {
        100: "#ae043c",
        200: "#a85504",
        300: "#987e04",
        400: "#5ea905",
        500: "#08c09e",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Poster Paint palette: #AE043C, #A85504, #987E04, #5EA905, #08C09E.

It is for this: Bold editorial covers where the colours are the illustration.

Map it as ground #08C09E, body text #AE043C, secondary text #A85504, and one accent #5EA905 with #111111 printed on it. That mapping does not clear WCAG AA on body text and secondary text and the accent — body 3.14:1, secondary 2.28:1, accent 1.26:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Product chrome — nothing here recedes.

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 5.9 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 — spread from hue 14 — 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.

Others for the same job