← All palettes

Sunrise Ferry

First screens

Onboarding runs where every step should feel lighter than the last.

Click a swatch to copy its hex.

Do not use this for

Dark mode — there is no dark anchor to invert to.

What was measured

Closest neighbours
ΔE00 13.2
how alike two adjacent swatches look
Darkest to lightest
5.5:1
WCAG contrast across the set
Lightness covered
44 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 and the accent — stated here rather than left for you to discover.

/* Sunrise Ferry — Onboarding runs where every step should feel lighter than the last. */
:root {
  --palette-1: #963852;
  --palette-2: #c4545a;
  --palette-3: #ec7761;
  --palette-4: #fea983;
  --palette-5: #ffddc5;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
  --bg: #ffddc5;
  --text: #963852;        /* 5.5:1 on --bg */
  --muted: #c4545a;      /* 3.44:1 on --bg */
  --accent: #ec7761;     /* 2.22:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Sunrise Ferry
export default {
  theme: {
    extend: {
      colors: {
        sunriseferry: {
        100: "#963852",
        200: "#c4545a",
        300: "#ec7761",
        400: "#fea983",
        500: "#ffddc5",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Sunrise Ferry palette: #963852, #C4545A, #EC7761, #FEA983, #FFDDC5.

It is for this: Onboarding runs where every step should feel lighter than the last.

Map it as ground #FFDDC5, body text #963852, secondary text #C4545A, and one accent #EC7761 with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 5.5:1, secondary 3.44:1, accent 2.22:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Dark mode — there is no dark anchor to invert to.

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