← All palettes

Slate Terminal

Long sessions

Code and log surfaces where syntax colour has to sit on top and win.

Click a swatch to copy its hex.

Do not use this for

Anywhere the palette itself is supposed to be the personality.

What was measured

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

/* Slate Terminal — Code and log surfaces where syntax colour has to sit on top and win. */
:root {
  --palette-1: #04070b;
  --palette-2: #181c25;
  --palette-3: #323440;
  --palette-4: #504e57;
  --palette-5: #6e6a70;

  /* 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: #6e6a70;
  --text: #04070b;        /* 3.8:1 on --bg */
  --muted: #181c25;      /* 3.21:1 on --bg */
  --accent: #323440;     /* 2.33:1 on --bg */
  --accent-text: #ffffff;
}

Tailwind

// tailwind.config — Slate Terminal
export default {
  theme: {
    extend: {
      colors: {
        slateterminal: {
        100: "#04070b",
        200: "#181c25",
        300: "#323440",
        400: "#504e57",
        500: "#6e6a70",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Slate Terminal palette: #04070B, #181C25, #323440, #504E57, #6E6A70.

It is for this: Code and log surfaces where syntax colour has to sit on top and win.

Map it as ground #6E6A70, body text #04070B, secondary text #181C25, and one accent #323440 with #FFFFFF printed on it. That mapping does not clear WCAG AA on body text and secondary text and the accent — body 3.8:1, secondary 3.21: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: Anywhere the palette itself is supposed to be the personality.

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 6.2 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 281 — 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