Links are distinguishable without relying on color

Links in body text are visually distinct from surrounding text, not by color alone.

On this page

Impact

ScanGov impact ratings

About

Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. [Learn how to make links distinguishable](https://dequeuniversity.com/rules/axe/4.10/link-in-text-block).

Risks

Users with low vision cannot read your text.

Why it's important

Makes text readable for users with low vision or color blindness by ensuring sufficient visual distinction.

User stories

As a user with low vision, I want sufficient color contrast so that I can read all text content clearly.

Code

Failing pattern:

/* Fail: link is indistinguishable from surrounding text */
a { color: inherit; text-decoration: none; }

Passing pattern:

/* Pass: underline provides non-color distinction */
a { text-decoration: underline; }

/* Alternative: bold weight + color */
a { color: #0054a0; font-weight: bold; }

Error

ScanGov messaging when a site fails a standard:

Failed: Links are distinguishable without relying on color

Guidance

Indicators

On this page