← All palettes

Quiet Library

Reading

Reading apps that prefer a cool page over a cream one.

Click a swatch to copy its hex.

Do not use this for

Warm imagery — the page fights every skin tone placed on it.

What was measured

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

/* Quiet Library — Reading apps that prefer a cool page over a cream one. */
:root {
  --palette-1: #2b3a46;
  --palette-2: #4a6877;
  --palette-3: #719aa6;
  --palette-4: #accbcf;
  --palette-5: #eafdfc;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on the accent — fix that before shipping. */
  --bg: #eafdfc;
  --text: #2b3a46;        /* 11.11:1 on --bg */
  --muted: #4a6877;      /* 5.64:1 on --bg */
  --accent: #719aa6;     /* 2.9:1 on --bg */
  --accent-text: #111111;
}

Tailwind

// tailwind.config — Quiet Library
export default {
  theme: {
    extend: {
      colors: {
        quietlibrary: {
        100: "#2b3a46",
        200: "#4a6877",
        300: "#719aa6",
        400: "#accbcf",
        500: "#eafdfc",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Quiet Library palette: #2B3A46, #4A6877, #719AA6, #ACCBCF, #EAFDFC.

It is for this: Reading apps that prefer a cool page over a cream one.

Map it as ground #EAFDFC, body text #2B3A46, secondary text #4A6877, and one accent #719AA6 with #111111 printed on it. That mapping does not clear WCAG AA on the accent — body 11.11:1, secondary 5.64:1, accent 2.9:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Warm imagery — the page fights every skin tone placed on it.

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 11.7 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 218 — 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