← All palettes

Charcoal Pine

Long sessions

Long-running back ends where a green cast keeps the grey from going dead.

Click a swatch to copy its hex.

Do not use this for

Success/failure semantics — the whole ground is already green.

What was measured

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

/* Charcoal Pine — Long-running back ends where a green cast keeps the grey from going dead. */
:root {
  --palette-1: #101605;
  --palette-2: #25391f;
  --palette-3: #3d5f46;
  --palette-4: #648274;
  --palette-5: #92a7a1;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on the accent — fix that before shipping. */
  --bg: #92a7a1;
  --text: #101605;        /* 7.26:1 on --bg */
  --muted: #25391f;      /* 4.91:1 on --bg */
  --accent: #3d5f46;     /* 2.83:1 on --bg */
  --accent-text: #ffffff;
}

Tailwind

// tailwind.config — Charcoal Pine
export default {
  theme: {
    extend: {
      colors: {
        charcoalpine: {
        100: "#101605",
        200: "#25391f",
        300: "#3d5f46",
        400: "#648274",
        500: "#92a7a1",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Charcoal Pine palette: #101605, #25391F, #3D5F46, #648274, #92A7A1.

It is for this: Long-running back ends where a green cast keeps the grey from going dead.

Map it as ground #92A7A1, body text #101605, secondary text #25391F, and one accent #3D5F46 with #FFFFFF printed on it. That mapping does not clear WCAG AA on the accent — body 7.26:1, secondary 4.91:1, accent 2.83:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Success/failure semantics — the whole ground is already green.

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 10.6 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 152 — 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