← All palettes

Deep Field

Long sessions

Long analytical sessions that still want a recognisable violet cast.

Click a swatch to copy its hex.

Do not use this for

Financial red/green readouts — the violet cast bends both.

What was measured

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

/* Deep Field — Long analytical sessions that still want a recognisable violet cast. */
:root {
  --palette-1: #00234c;
  --palette-2: #292f83;
  --palette-3: #5d3da2;
  --palette-4: #895c9e;
  --palette-5: #a77f9f;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
  --bg: #a77f9f;
  --text: #00234c;        /* 4.6:1 on --bg */
  --muted: #292f83;      /* 3.38:1 on --bg */
  --accent: #5d3da2;     /* 2.33:1 on --bg */
  --accent-text: #ffffff;
}

Tailwind

// tailwind.config — Deep Field
export default {
  theme: {
    extend: {
      colors: {
        deepfield: {
        100: "#00234c",
        200: "#292f83",
        300: "#5d3da2",
        400: "#895c9e",
        500: "#a77f9f",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Deep Field palette: #00234C, #292F83, #5D3DA2, #895C9E, #A77F9F.

It is for this: Long analytical sessions that still want a recognisable violet cast.

Map it as ground #A77F9F, body text #00234C, secondary text #292F83, and one accent #5D3DA2 with #FFFFFF printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 4.6:1, secondary 3.38:1, accent 2.33:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Financial red/green readouts — the violet cast bends both.

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.5 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 294 — 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