← All articles

How Spot the Color Generates Its Off-Shade Tiles

Color theory · 5 min read · Published June 16, 2026

Every round of Spot the Color shows a grid where one tile is a slightly different shade. The trick to making that fair — and progressively brutal — is doing the color math in HSL (hue, saturation, lightness) rather than RGB.

Why HSL, not RGB

In RGB, "a slightly different shade" is ambiguous — nudging red, green, or blue changes hue and brightness together. HSL separates those: keep hue and saturation fixed, move only lightness, and you get the same color, just lighter or darker. That's exactly the "is that tile off?" sensation we want. New to HSL? Here's a plain-English explainer.

One number controls the difficulty

Each round picks a random base color, then offsets the odd tile's lightness by a delta. A bigger delta is easy to spot; a smaller delta is nearly invisible. The delta shrinks as you progress:

// Lower delta = closer shades = harder to spot
function deltaForRound(round, diff) {
  if (diff === "hard") return Math.max(1, 16 - round * 1.2);
  return Math.max(3, 28 - round * 1.1);
}

So in Normal mode the first round differs by ~27 lightness points (obvious), and a couple dozen rounds later it's down to the floor of 3 points — right at the edge of human perception on a typical screen.

The grid grows too

Difficulty isn't only about shade. The grid also expands, so there are more tiles to scan and the odd one hides in a bigger crowd. Smaller shade gap plus more tiles is what makes later rounds feel so punishing.

What this teaches you about perception

Human eyes are far better at detecting contrast than absolute color, and that sensitivity isn't uniform — it depends on the base hue, the surrounding tiles, and even your screen's brightness. That's why some rounds feel easy and a same-delta round on a different color feels impossible. The game is, quietly, a little perception experiment — the kind we dig into more in this look at the limits of color perception.

Want to feel the difference yourself? Play a round of Spot the Color and watch how few lightness points it takes before you're guessing.

Play the gameHow to Play