GoWin Tools
Tools
Back to Color Contrast Checker

Understanding Color Contrast & WCAG

How contrast ratios are calculated, what the WCAG levels mean in practice, and how to fix failing color pairs.

What is Contrast Ratio?

Contrast ratio is a number between 1:1 (no contrast — identical colors) and 21:1 (maximum contrast — pure black on pure white). It is derived from the relative luminance of each color, which is a linearized measure of how much light a color reflects to the human eye.

The formula, as defined in WCAG 2.1:

L = 0.2126 × R + 0.7152 × G + 0.0722 × B

where R, G, B are linearized channel values (gamma-corrected)

ratio = (Llighter + 0.05) / (Ldarker + 0.05)

The weights (0.2126, 0.7152, 0.0722) reflect the fact that the human eye is most sensitive to green light and least sensitive to blue. The +0.05 offset prevents division by zero for pure black.

WCAG 2.1 Conformance Levels — AA vs AAA

The Web Content Accessibility Guidelines define three conformance levels: A (minimum), AA (standard), and AAA (enhanced). Most legal requirements reference AA. AAA is an aspirational target that may not be achievable for all content types.

Normal textBody copy, paragraphs, labels, inputs

AA — Standard

4.5:1

minimum ratio required

AAA — Enhanced

7:1

for maximum accessibility

Large text≥24px regular (18pt) or ≥18.67px bold (14pt)

AA — Standard

3:1

relaxed — larger text is easier to read

AAA — Enhanced

4.5:1

same as normal-text AA

UI components & graphicsButtons, inputs, icons, focus rings, charts

AA — Standard

3:1

for borders, icons, interactive states

AAA

No requirement

WCAG does not define an AAA threshold for UI components

Source: WCAG 2.1 Success Criteria 1.4.3 (AA) and 1.4.6 (AAA).

Why It Matters — Legal & Human Impact

Approximately 8% of men and 0.5% of women have some form of color vision deficiency. Beyond that, low contrast affects anyone reading in bright sunlight, on a low-quality screen, or with age-related vision loss.

Legally, WCAG AA is referenced by:

  • ADA (Americans with Disabilities Act) — US websites serving the public
  • Section 508 — US federal agencies and contractors
  • EN 301 549 — European accessibility standard for ICT products
  • AODA (Accessibility for Ontarians with Disabilities Act) — Canada

Failing WCAG AA can expose organizations to legal complaints and remediation costs — and more importantly, it excludes real users.

Common Failing Patterns

Aa

Light grey on white

#aaaaaa on #ffffff — ratio 2.32:1

Extremely common in placeholder text and disabled states. Fails AA for all text sizes.

Aa

Red on white

#ff0000 on #ffffff — ratio 3.99:1

Standard red fails AA for normal text. Often used in error messages — exactly where readability matters most.

Aa

Yellow on white

#ffff00 on #ffffff — ratio 1.07:1

Near-invisible. Yellow has very high luminance, nearly identical to white.

Aa

Brand blue on dark bg

#4f46e5 on #1e1b4b — ratio ~1.8:1

Many indigo-on-dark-indigo pairings fail. Active nav items and focus rings are common culprits.

How to Fix Failing Colors

Darken or lighten the foreground

The simplest fix. Darken a light text color or lighten a dark one until the ratio clears 4.5:1. The contrast checker's auto-suggest does this for you.

Increase the weight or size

Large text (≥24px, or ≥18.67px bold) only needs 3:1. If you can't change the color, making the text larger relaxes the threshold.

Shift the hue

Sometimes a hue shift preserves brand feel while improving contrast. A warm red (#cc2200) passes AA on white; pure red (#ff0000) does not.

Add a text shadow or outline

For text on complex backgrounds (images, gradients), a subtle text-shadow or semi-opaque backdrop can bring the effective contrast above threshold.

References

  1. W3C. (2018). Web Content Accessibility Guidelines (WCAG) 2.1 — Success Criterion 1.4.3 Contrast (Minimum). w3.org/TR/WCAG21/#contrast-minimum
  2. WebAIM. (2024). Contrast Checker. webaim.org/resources/contrastchecker/
  3. MDN Web Docs. (2024). Color contrast — Accessibility. developer.mozilla.org — Colors and Luminance
  4. W3C. (2018). WCAG 2.1 — Relative Luminance definition. w3.org/TR/WCAG21/#dfn-relative-luminance
  5. European Telecommunications Standards Institute. (2021). EN 301 549 v3.2.1 — Accessibility requirements for ICT.