← All palettes

Watermelon Stall

First screens

Bright product grids where each card needs its own identity.

Click a swatch to copy its hex.

Do not use this for

Anything sober; this is a fruit stand, not a bank.

What was measured

Closest neighbours
ΔE00 18.9
how alike two adjacent swatches look
Darkest to lightest
2.02:1
WCAG contrast across the set
Lightness covered
16 pts
of OKLCH lightness, 0–100
Under colour blindness
ΔE00 3.1
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.

/* Watermelon Stall — Bright product grids where each card needs its own identity. */
:root {
  --palette-1: #d46082;
  --palette-2: #e57252;
  --palette-3: #e0911c;
  --palette-4: #c5b324;
  --palette-5: #95d26b;

  /* 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: #95d26b;
  --text: #d46082;        /* 2.02:1 on --bg */
  --muted: #e57252;      /* 1.71:1 on --bg */
  --accent: #e57252;     /* 1.71:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Watermelon Stall
export default {
  theme: {
    extend: {
      colors: {
        watermelonstall: {
        100: "#d46082",
        200: "#e57252",
        300: "#e0911c",
        400: "#c5b324",
        500: "#95d26b",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Watermelon Stall palette: #D46082, #E57252, #E0911C, #C5B324, #95D26B.

It is for this: Bright product grids where each card needs its own identity.

Map it as ground #95D26B, body text #D46082, secondary text #E57252, and one accent #E57252 with #111111 printed on it. That mapping does not clear WCAG AA on body text and secondary text and the accent — body 2.02:1, secondary 1.71:1, accent 1.71:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Anything sober; this is a fruit stand, not a bank.

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 3.1 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 4 — 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