← All palettes

Neon Kiosk

Brand pages

Product launches that want to look lit rather than printed.

Click a swatch to copy its hex.

Do not use this for

Accessibility-first work — the light steps fail on white.

What was measured

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

/* Neon Kiosk — Product launches that want to look lit rather than printed. */
:root {
  --palette-1: #786900;
  --palette-2: #3d9b24;
  --palette-3: #0cb7a1;
  --palette-4: #02cffa;
  --palette-5: #c2d9fe;

  /* 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: #c2d9fe;
  --text: #786900;        /* 3.84:1 on --bg */
  --muted: #3d9b24;      /* 2.48:1 on --bg */
  --accent: #3d9b24;     /* 2.48:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Neon Kiosk
export default {
  theme: {
    extend: {
      colors: {
        neonkiosk: {
        100: "#786900",
        200: "#3d9b24",
        300: "#0cb7a1",
        400: "#02cffa",
        500: "#c2d9fe",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Neon Kiosk palette: #786900, #3D9B24, #0CB7A1, #02CFFA, #C2D9FE.

It is for this: Product launches that want to look lit rather than printed.

Map it as ground #C2D9FE, body text #786900, secondary text #3D9B24, and one accent #3D9B24 with #111111 printed on it. That mapping does not clear WCAG AA on body text and secondary text and the accent — body 3.84:1, secondary 2.48:1, accent 2.48:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Accessibility-first work — the light steps fail on white.

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.7 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 — ramp from hue 180 — 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