← All palettes

Beach Towel

First screens

Playful marketing sections where five stripes is the whole layout.

Click a swatch to copy its hex.

Do not use this for

Data — the hues are spread for cheer, not for separation.

What was measured

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

/* Beach Towel — Playful marketing sections where five stripes is the whole layout. */
:root {
  --palette-1: #07978f;
  --palette-2: #029ed1;
  --palette-3: #7f95fe;
  --palette-4: #d18cee;
  --palette-5: #fe95ba;

  /* 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: #fe95ba;
  --text: #07978f;        /* 1.75:1 on --bg */
  --muted: #029ed1;      /* 1.5:1 on --bg */
  --accent: #7f95fe;     /* 1.34:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Beach Towel
export default {
  theme: {
    extend: {
      colors: {
        beachtowel: {
        100: "#07978f",
        200: "#029ed1",
        300: "#7f95fe",
        400: "#d18cee",
        500: "#fe95ba",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Beach Towel palette: #07978F, #029ED1, #7F95FE, #D18CEE, #FE95BA.

It is for this: Playful marketing sections where five stripes is the whole layout.

Map it as ground #FE95BA, body text #07978F, secondary text #029ED1, and one accent #7F95FE with #111111 printed on it. That mapping does not clear WCAG AA on body text and secondary text and the accent — body 1.75:1, secondary 1.5:1, accent 1.34:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Data — the hues are spread for cheer, not for separation.

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 2.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 — spread from hue 188 — 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