← All palettes

Mango Stand

First screens

An opening screen that has to feel like somewhere warm within a second.

Click a swatch to copy its hex.

Do not use this for

Long forms — this much saturation gets tiring by field four.

What was measured

Closest neighbours
ΔE00 26.8
how alike two adjacent swatches look
Darkest to lightest
7.2:1
WCAG contrast across the set
Lightness covered
60 pts
of OKLCH lightness, 0–100
Under colour blindness
ΔE00 21.1
worst under protanopia

Every pair here survives protanopia, deuteranopia and tritanopia, so these five can stand for five different things.

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.

/* Mango Stand — An opening screen that has to feel like somewhere warm within a second. */
:root {
  --palette-1: #6a2300;
  --palette-2: #dd5301;
  --palette-3: #f9f0da;
  --palette-4: #044f56;
  --palette-5: #5be0ee;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text — fix that before shipping. */
  --bg: #f9f0da;
  --text: #6a2300;        /* 9.98:1 on --bg */
  --muted: #dd5301;      /* 3.48:1 on --bg */
  --accent: #dd5301;     /* 3.48:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Mango Stand
export default {
  theme: {
    extend: {
      colors: {
        mangostand: {
        100: "#6a2300",
        200: "#dd5301",
        300: "#f9f0da",
        400: "#044f56",
        500: "#5be0ee",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Mango Stand palette: #6A2300, #DD5301, #F9F0DA, #044F56, #5BE0EE.

It is for this: An opening screen that has to feel like somewhere warm within a second.

Map it as ground #F9F0DA, body text #6A2300, secondary text #DD5301, and one accent #DD5301 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text — body 9.98:1, secondary 3.48:1, accent 3.48:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Long forms — this much saturation gets tiring by field four.

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 21.1 apart on the CIEDE2000 scale, 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 42 and 205 — 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