← All palettes

Harbor Night

Long sessions

A night-shift tool where the brightest step still sits below mid grey.

Click a swatch to copy its hex.

Do not use this for

Any screen read in daylight — the top step is too dark to be a page.

What was measured

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

/* Harbor Night — A night-shift tool where the brightest step still sits below mid grey. */
:root {
  --palette-1: #001219;
  --palette-2: #003145;
  --palette-3: #165077;
  --palette-4: #557092;
  --palette-5: #8792aa;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
  --bg: #8792aa;
  --text: #001219;        /* 6.11:1 on --bg */
  --muted: #003145;      /* 4.41:1 on --bg */
  --accent: #165077;     /* 2.75:1 on --bg */
  --accent-text: #ffffff;
}

Tailwind

// tailwind.config — Harbor Night
export default {
  theme: {
    extend: {
      colors: {
        harbornight: {
        100: "#001219",
        200: "#003145",
        300: "#165077",
        400: "#557092",
        500: "#8792aa",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Harbor Night palette: #001219, #003145, #165077, #557092, #8792AA.

It is for this: A night-shift tool where the brightest step still sits below mid grey.

Map it as ground #8792AA, body text #001219, secondary text #003145, and one accent #165077 with #FFFFFF printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 6.11:1, secondary 4.41:1, accent 2.75:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Any screen read in daylight — the top step is too dark to be a page.

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