← All palettes

Steel Desk

Back office

Dense CRUD interfaces where every row must look identical.

Click a swatch to copy its hex.

Do not use this for

Anything hierarchical — the steps are too close to rank.

What was measured

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

/* Steel Desk — Dense CRUD interfaces where every row must look identical. */
:root {
  --palette-1: #1b2726;
  --palette-2: #3b4d4f;
  --palette-3: #61767b;
  --palette-4: #929fa6;
  --palette-5: #c4ccd1;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on the accent — fix that before shipping. */
  --bg: #c4ccd1;
  --text: #1b2726;        /* 9.46:1 on --bg */
  --muted: #3b4d4f;      /* 5.47:1 on --bg */
  --accent: #61767b;     /* 2.94:1 on --bg */
  --accent-text: #ffffff;
}

Tailwind

// tailwind.config — Steel Desk
export default {
  theme: {
    extend: {
      colors: {
        steeldesk: {
        100: "#1b2726",
        200: "#3b4d4f",
        300: "#61767b",
        400: "#929fa6",
        500: "#c4ccd1",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Steel Desk palette: #1B2726, #3B4D4F, #61767B, #929FA6, #C4CCD1.

It is for this: Dense CRUD interfaces where every row must look identical.

Map it as ground #C4CCD1, body text #1B2726, secondary text #3B4D4F, and one accent #61767B with #FFFFFF printed on it. That mapping does not clear WCAG AA on the accent — body 9.46:1, secondary 5.47:1, accent 2.94:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Anything hierarchical — the steps are too close to rank.

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 12.1 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 216 — 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