← All palettes

Ink Well

Long sessions

Writing tools at night, where the page should be the lightest thing present.

Click a swatch to copy its hex.

Do not use this for

Dashboards — five steps this dark cannot separate as data.

What was measured

Closest neighbours
ΔE00 7.9
how alike two adjacent swatches look
Darkest to lightest
3.44:1
WCAG contrast across the set
Lightness covered
36 pts
of OKLCH lightness, 0–100
Under colour blindness
ΔE00 7.7
worst under tritanopia

These two are one colour to a reader with tritanopia. 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.

/* Ink Well — Writing tools at night, where the page should be the lightest thing present. */
:root {
  --palette-1: #010826;
  --palette-2: #021b4b;
  --palette-3: #0b336b;
  --palette-4: #2f4e76;
  --palette-5: #536880;

  /* 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: #536880;
  --text: #010826;        /* 3.44:1 on --bg */
  --muted: #021b4b;      /* 2.9:1 on --bg */
  --accent: #0b336b;     /* 2.15:1 on --bg */
  --accent-text: #ffffff;
}

Tailwind

// tailwind.config — Ink Well
export default {
  theme: {
    extend: {
      colors: {
        inkwell: {
        100: "#010826",
        200: "#021b4b",
        300: "#0b336b",
        400: "#2f4e76",
        500: "#536880",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Ink Well palette: #010826, #021B4B, #0B336B, #2F4E76, #536880.

It is for this: Writing tools at night, where the page should be the lightest thing present.

Map it as ground #536880, body text #010826, secondary text #021B4B, and one accent #0B336B with #FFFFFF printed on it. That mapping does not clear WCAG AA on body text and secondary text and the accent — body 3.44:1, secondary 2.9:1, accent 2.15:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Dashboards — five steps this dark cannot separate as data.

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 7.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 258 — 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