← All palettes

Filing Cabinet

Back office

Admin tables where colour is spent only on what needs action.

Click a swatch to copy its hex.

Do not use this for

Marketing — there is no persuasion in this set.

What was measured

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

/* Filing Cabinet — Admin tables where colour is spent only on what needs action. */
:root {
  --palette-1: #555669;
  --palette-2: #69728e;
  --palette-3: #7d91ae;
  --palette-4: #9bafc2;
  --palette-5: #becdd6;

  /* 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: #becdd6;
  --text: #555669;        /* 4.41:1 on --bg */
  --muted: #69728e;      /* 2.93:1 on --bg */
  --accent: #7d91ae;     /* 1.97:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Filing Cabinet
export default {
  theme: {
    extend: {
      colors: {
        filingcabinet: {
        100: "#555669",
        200: "#69728e",
        300: "#7d91ae",
        400: "#9bafc2",
        500: "#becdd6",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Filing Cabinet palette: #555669, #69728E, #7D91AE, #9BAFC2, #BECDD6.

It is for this: Admin tables where colour is spent only on what needs action.

Map it as ground #BECDD6, body text #555669, secondary text #69728E, and one accent #7D91AE with #111111 printed on it. That mapping does not clear WCAG AA on body text and secondary text and the accent — body 4.41:1, secondary 2.93:1, accent 1.97:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Marketing — there is no persuasion in this set.

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