← All palettes

Poppy Field

First screens

A hero that needs one loud red and something green to steady it.

Click a swatch to copy its hex.

Do not use this for

Alert semantics — the loudest colour here is already spent.

What was measured

Closest neighbours
ΔE00 25.7
how alike two adjacent swatches look
Darkest to lightest
7.1:1
WCAG contrast across the set
Lightness covered
57 pts
of OKLCH lightness, 0–100
Under colour blindness
ΔE00 9.4
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 — stated here rather than left for you to discover.

/* Poppy Field — A hero that needs one loud red and something green to steady it. */
:root {
  --palette-1: #830031;
  --palette-2: #fe0c68;
  --palette-3: #faefda;
  --palette-4: #3b5701;
  --palette-5: #b4e471;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text — fix that before shipping. */
  --bg: #faefda;
  --text: #830031;        /* 9.17:1 on --bg */
  --muted: #fe0c68;      /* 3.37:1 on --bg */
  --accent: #fe0c68;     /* 3.37:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Poppy Field
export default {
  theme: {
    extend: {
      colors: {
        poppyfield: {
        100: "#830031",
        200: "#fe0c68",
        300: "#faefda",
        400: "#3b5701",
        500: "#b4e471",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Poppy Field palette: #830031, #FE0C68, #FAEFDA, #3B5701, #B4E471.

It is for this: A hero that needs one loud red and something green to steady it.

Map it as ground #FAEFDA, body text #830031, secondary text #FE0C68, and one accent #FE0C68 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text — body 9.17:1, secondary 3.37:1, accent 3.37:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Alert semantics — the loudest colour here is already spent.

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 9.4 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 — scene from hue 10 and 128 — 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