← All palettes

Basalt

Long sessions

A near-neutral dark with a faint warm tilt, so black never goes blue.

Click a swatch to copy its hex.

Do not use this for

Charts needing five separable series — the chroma is too low.

What was measured

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

/* Basalt — A near-neutral dark with a faint warm tilt, so black never goes blue. */
:root {
  --palette-1: #11120a;
  --palette-2: #323124;
  --palette-3: #575343;
  --palette-4: #7c776b;
  --palette-5: #a29e97;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on the accent — fix that before shipping. */
  --bg: #a29e97;
  --text: #11120a;        /* 7.06:1 on --bg */
  --muted: #323124;      /* 4.92:1 on --bg */
  --accent: #575343;     /* 2.89:1 on --bg */
  --accent-text: #ffffff;
}

Tailwind

// tailwind.config — Basalt
export default {
  theme: {
    extend: {
      colors: {
        basalt: {
        100: "#11120a",
        200: "#323124",
        300: "#575343",
        400: "#7c776b",
        500: "#a29e97",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Basalt palette: #11120A, #323124, #575343, #7C776B, #A29E97.

It is for this: A near-neutral dark with a faint warm tilt, so black never goes blue.

Map it as ground #A29E97, body text #11120A, secondary text #323124, and one accent #575343 with #FFFFFF printed on it. That mapping does not clear WCAG AA on the accent — body 7.06:1, secondary 4.92:1, accent 2.89:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Charts needing five separable series — the chroma is too low.

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.8 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 95 — 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