Start scanning free

( Perceivable / WCAG 1.4.6 )

Text does not meet enhanced AAA contrast requirements

This check maps to Contrast (Enhanced). Use the guidance below to confirm the issue, understand who it affects and ship a fix.

Moderate Level AAA WCAG 1.4.6 — Contrast (Enhanced)

What’s wrong

Text contrast is below 7:1 for normal-size body text.

Why it matters

People with low vision often need stronger contrast to read comfortably. Low contrast text causes eye strain and can make key information unreadable.

How to fix it

Use semantic HTML and valid ARIA so assistive technology gets the same state and structure as sighted users. Keep labels and states explicit in markup.

Before
<p style="color:#8a8a8a;background:#ffffff">Monthly invoice due tomorrow</p>
After
<p style="color:#4a4a4a;background:#ffffff">Monthly invoice due tomorrow</p>

If this pattern is generated by a component, fix it once in the shared component so every instance inherits the accessible behavior.

Learn more