← All palettes

Meter Bank

Charts

Utilisation bars and heat rows across many rows at once.

Click a swatch to copy its hex.

Do not use this for

Photography-led pages — the set overwhelms real images.

What was measured

Closest neighbours
ΔE00 38
how alike two adjacent swatches look
Darkest to lightest
7.71:1
WCAG contrast across the set
Lightness covered
48 pts
of OKLCH lightness, 0–100
Under colour blindness
ΔE00 22.9
worst under deuteranopia

Every pair here survives protanopia, deuteranopia and tritanopia, so these five can stand for five different things.

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 secondary text — stated here rather than left for you to discover.

/* Meter Bank — Utilisation bars and heat rows across many rows at once. */
:root {
  --palette-1: #6e0300;
  --palette-2: #7555a8;
  --palette-3: #2b7961;
  --palette-4: #d5b5ee;
  --palette-5: #2fe69c;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text — fix that before shipping. */
  --bg: #2fe69c;
  --text: #6e0300;        /* 7.71:1 on --bg */
  --muted: #7555a8;      /* 3.57:1 on --bg */
  --accent: #7555a8;     /* 3.57:1 on --bg */
  --accent-text: #ffffff;
}

Tailwind

// tailwind.config — Meter Bank
export default {
  theme: {
    extend: {
      colors: {
        meterbank: {
        100: "#6e0300",
        200: "#7555a8",
        300: "#2b7961",
        400: "#d5b5ee",
        500: "#2fe69c",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Meter Bank palette: #6E0300, #7555A8, #2B7961, #D5B5EE, #2FE69C.

It is for this: Utilisation bars and heat rows across many rows at once.

Map it as ground #2FE69C, body text #6E0300, secondary text #7555A8, and one accent #7555A8 with #FFFFFF printed on it. That mapping does not clear WCAG AA on secondary text — body 7.71:1, secondary 3.57:1, accent 3.57:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Photography-led pages — the set overwhelms real images.

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 22.9 apart on the CIEDE2000 scale, 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 — series from hue 300 — 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