Gauge Cluster
ChartsReal-time readouts where warm and cool must both be present.
Click a swatch to copy its hex.
Do not use this for
Danger semantics — a warm hue is already in the middle of the set.
What was measured
- Closest neighbours
- ΔE00 30.5
- how alike two adjacent swatches look
- Darkest to lightest
- 6.5:1
- WCAG contrast across the set
- Lightness covered
- 48 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 20
- worst under tritanopia
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 and the accent — stated here rather than left for you to discover.
/* Gauge Cluster — Real-time readouts where warm and cool must both be present. */
:root {
--palette-1: #003967;
--palette-2: #017974;
--palette-3: #ac4403;
--palette-4: #0fafff;
--palette-5: #fdac9f;
/* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text and the accent — fix that before shipping. */
--bg: #fdac9f;
--text: #003967; /* 6.5:1 on --bg */
--muted: #ac4403; /* 3.23:1 on --bg */
--accent: #0fafff; /* 1.35:1 on --bg */
--accent-text: #111111;
}Tailwind
// tailwind.config — Gauge Cluster
export default {
theme: {
extend: {
colors: {
gaugecluster: {
100: "#003967",
200: "#017974",
300: "#ac4403",
400: "#0fafff",
500: "#fdac9f",
},
},
},
},
};For your coding agent · printed from the colours
Use the Gauge Cluster palette: #003967, #017974, #AC4403, #0FAFFF, #FDAC9F. It is for this: Real-time readouts where warm and cool must both be present. Map it as ground #FDAC9F, body text #003967, secondary text #AC4403, and one accent #0FAFFF with #111111 printed on it. That mapping does not clear WCAG AA on secondary text and the accent — body 6.5:1, secondary 3.23:1, accent 1.35:1. Fix the named role against the ground before shipping; do not ship the pair as given. Do not use it for: Danger semantics — a warm hue is already in the middle of the 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 20 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 44 — 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.