Home / Knowledge Base / Links Must Be Distinguishable Without Relying on Color

Links Must Be Distinguishable Without Relying on Color

Links embedded within blocks of text must be visually identifiable as interactive elements. A link fails accessibility requirements if users cannot recognise it as a link without relying solely on color perception.

If removing color from the page makes links hard or impossible to identify, the links are not accessible. This requirement is essential for inline links within paragraphs, where links appear alongside regular text and must be clearly recognisable as interactive.

WCAG Success Criteria

Link distinguishability is governed primarily by Success Criterion 1.4.1 Use of Color (Level A) and supported by contrast requirements. A link is considered distinguishable only when users can identify it as interactive without relying on color alone.

This can be achieved in one of two ways:

  1. A non-color visual indicator, such as:
    • Underline
    • Border
    • Background highlight
    • Other persistent visual affordance
  2. A color contrast difference of at least 3:1 between the link text and surrounding text, with clearly visible focus styling

1.4.1 Use of Color (Level A)

Color must not be the only visual means of conveying information. If a link is identified only by color, users who cannot perceive color differences may not realise the text is interactive.

1.4.3 Contrast (Minimum) (Level AA)

Text must have sufficient contrast against its background. When links rely on color difference rather than an additional visual cue, the contrast difference between the link text and surrounding text must be at least 3:1 to remain distinguishable.

Important:
1.4.3 measures contrast against the background, while link distinction relies on contrast against surrounding text, as clarified in WCAG Understanding 1.4.1.

Examples

Passes — Non-Color Indicator

<p>
  Learn more about our <a href="#">accessibility guidelines</a>.
</p>

With default browser styling or CSS that preserves underlines, the link is identifiable even without color.

Passes — Sufficient Contrast Difference

<p>
  Learn more about our <a href="#">accessibility guidelines</a>.
</p>

If the link color differs from the surrounding text by at least 3:1, it may pass only if focus indicators are also clearly visible.

Note:
Although WCAG allows this, relying on color alone, even at 3:1, is fragile and discouraged.

Fails — Color Only, Insufficient Contrast

<p>
  Visit our <a href="#">help center</a> for more information.
</p>

If the surrounding text and link color are visually similar, users may not recognise the link at all.

Why This Matters

Many users cannot reliably distinguish subtle color differences, including:

  • Users with low vision
  • Users with color vision deficiencies
  • Users viewing content on low-quality displays
  • Users in high-glare or low-contrast environments

Sighted keyboard users are also affected. If links are not visually distinct and focus indicators are weak or missing, users navigating with the keyboard may lose track of where they are.

When links are not clearly identifiable, users may miss navigation paths, supporting information, or critical actions embedded in content.

Common Failure Patterns

This issue commonly occurs when:

  • CSS resets remove default link underlines
  • Designers rely only on color to indicate links
  • Links are embedded in long paragraphs without visual affordances
  • Hover styles exist, but focus styles are missing or subtle
  • Link contrast meets text contrast requirements, but not link-to-text contrast

Common Techniques to Meet This Rule

To ensure links are accessible:

  • Preserve underlines for inline links in body text
  • Add persistent non-color indicators when custom styling is applied
  • Ensure link color differs from surrounding text by at least 3:1 if no other indicator is used
  • Provide clearly visible focus styles (hover styles alone are insufficient)

Hover styles help mouse users.
Focus styles are essential for keyboard users.

How to Test This Manually

Automated tools can measure contrast ratios, but manual testing is required for full verification.

Basic checks:

  1. Remove color (or view in grayscale):
    Can you still identify links?
  2. Tab through the page:
    Is the focused link clearly visible?
  3. Compare link text to surrounding text:
    If color is the only difference, does it meet a 3:1 contrast difference?

If the answer to any of these is no, the links fail.

Tools That Can Help

Contrast-checking tools include:

  • Deque aXe browser extensions
  • WorldSpace Attest browser extension

These tools help measure contrast ratios but cannot determine whether links remain distinguishable in real use. Manual testing is always required.

Who Is Affected

This issue affects:

  • Users with low vision
  • Users with color vision deficiencies
  • Keyboard-only users relying on visible focus indicators
  • Anyone reading dense, text-heavy content

Rule Description

Links must be visually distinguishable from surrounding text without relying solely on color. A link passes this rule if it includes a non-color visual indicator or if its color differs from surrounding text by at least 3:1 and provides visible focus styling.

The Algorithm

  1. Identify links within blocks of text
  2. Check whether the link has a non-color visual indicator
  3. If not, check whether the color difference from the surrounding text is at least 3:1
  4. Verify that focus styling is clearly visible
  5. If links rely only on color and fail any of these checks, the rule fails

Wrapping Up

Links are only useful if users can recognise them. When links rely solely on color, many users are excluded, often without realising anything is missing.

By providing clear visual indicators beyond color and ensuring adequate contrast and focus visibility, authors make links discoverable, navigable, and usable for everyone.

Want to test against all WCAG success criteria?

Stay compliant. Avoid fines. WebYes reviews your entire website so you don't have to worry.

Sign Up for Free Now