Cold Storage
Long sessionsMonitoring walls left running all day; almost no chroma to fatigue the eye.
Click a swatch to copy its hex.
Do not use this for
Marketing — there is nothing here that wants attention.
What was measured
- Closest neighbours
- ΔE00 11.2
- how alike two adjacent swatches look
- Darkest to lightest
- 7.32:1
- WCAG contrast across the set
- Lightness covered
- 52 pts
- of OKLCH lightness, 0–100
- Under colour blindness
- ΔE00 9.9
- 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.
/* Cold Storage — Monitoring walls left running all day; almost no chroma to fatigue the eye. */
:root {
--palette-1: #051921;
--palette-2: #163b45;
--palette-3: #346068;
--palette-4: #648487;
--palette-5: #96a9a9;
/* A suggested mapping, not a token set. It falls short of WCAG AA on the accent — fix that before shipping. */
--bg: #96a9a9;
--text: #051921; /* 7.32:1 on --bg */
--muted: #163b45; /* 4.9:1 on --bg */
--accent: #346068; /* 2.83:1 on --bg */
--accent-text: #ffffff;
}Tailwind
// tailwind.config — Cold Storage
export default {
theme: {
extend: {
colors: {
coldstorage: {
100: "#051921",
200: "#163b45",
300: "#346068",
400: "#648487",
500: "#96a9a9",
},
},
},
},
};For your coding agent · printed from the colours
Use the Cold Storage palette: #051921, #163B45, #346068, #648487, #96A9A9. It is for this: Monitoring walls left running all day; almost no chroma to fatigue the eye. Map it as ground #96A9A9, body text #051921, secondary text #163B45, and one accent #346068 with #FFFFFF printed on it. That mapping does not clear WCAG AA on the accent — body 7.32:1, secondary 4.9: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: Marketing — there is nothing here that wants attention. 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 9.9 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 212 — 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.