← All palettes

Foolscap

Reading

Note-taking and drafting tools; a cream that does not glare at night.

Click a swatch to copy its hex.

Do not use this for

Photography — the warm cast contaminates every image on it.

What was measured

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

/* Foolscap — Note-taking and drafting tools; a cream that does not glare at night. */
:root {
  --palette-1: #1a0f04;
  --palette-2: #4d3825;
  --palette-3: #836952;
  --palette-4: #b4a18f;
  --palette-5: #e8dcd0;

  /* A suggested mapping, not a token set. It falls short of WCAG AA on secondary text — fix that before shipping. */
  --bg: #e8dcd0;
  --text: #1a0f04;        /* 13.98:1 on --bg */
  --muted: #836952;      /* 3.79:1 on --bg */
  --accent: #836952;     /* 3.79:1 on --bg */
  --accent-text: #ffffff;
}

Tailwind

// tailwind.config — Foolscap
export default {
  theme: {
    extend: {
      colors: {
        foolscap: {
        100: "#1a0f04",
        200: "#4d3825",
        300: "#836952",
        400: "#b4a18f",
        500: "#e8dcd0",
        },
      },
    },
  },
};

For your coding agent · printed from the colours

Use the Foolscap palette: #1A0F04, #4D3825, #836952, #B4A18F, #E8DCD0.

It is for this: Note-taking and drafting tools; a cream that does not glare at night.

Map it as ground #E8DCD0, body text #1A0F04, secondary text #836952, and one accent #836952 with #FFFFFF printed on it. That mapping does not clear WCAG AA on secondary text — body 13.98:1, secondary 3.79:1, accent 3.79:1. Fix the named role against the ground before shipping; do not ship the pair as given.

Do not use it for: Photography — the warm cast contaminates every image 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 13.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 64 — 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