Skip to content

Color Contrast in PDFs — Complete Guide

DodaTech Updated 2026-06-28 5 min read

In this tutorial, you will learn about Color Contrast in PDFs. We cover key concepts, practical examples, and best practices to help you master this topic.

Color contrast in PDF Accessibility means ensuring that foreground text and user interface components have a sufficient contrast ratio against their background — at least 4.5:1 for normal text and 3:1 for large text under WCAG AA — across all pages of the document.

What You'll Learn

You will learn how contrast requirements apply to PDFs, how to measure contrast ratios in PDF content, how to fix low-contrast text, images, and form fields, and how to verify Compliance with WCAG and PDF/UA standards.

Why It Matters

Low contrast is one of the most common accessibility barriers in PDFs. Light gray text on white backgrounds, watermarks behind text, and form fields with faint borders are all frequent issues. For users with low vision, low contrast reduces readability or makes content completely invisible.

Real-World Use

A government agency's PDF tax forms use 60 percent gray text on white backgrounds for instructions. A user with moderate vision loss cannot read the instructions and enters incorrect information. After the agency changes text color to black on white (21:1 ratio), the forms become usable for a wider audience.

Contrast Decision Flow

flowchart TD
  A[Content in PDF] --> B{Is it text?}
  B -->|Yes| C{Is it large text?}
  C -->|Yes >=18px or >=14px bold| D[3:1 minimum]
  C -->|No| E[4.5:1 minimum]
  B -->|No| F{Is it UI component?}
  F -->|Yes| G[3:1 minimum]
  B -->|No, image| H{Contains text?}
  H -->|Yes| E
  H -->|No| I[No requirement]
  D --> J[Measure with tool]
  E --> J
  G --> J

Measuring Contrast in Acrobat

Acrobat Pro does not have a built-in contrast checker. Use one of these methods:

  1. Take a screenshot of the PDF and use a browser-based contrast checker like WebAIM's.
  2. Use the PAC 2021 PDF checker, which includes contrast checks for text elements.
  3. Extract colors using a PDF library and calculate the ratio manually.
# Calculate contrast ratio from RGB values
def relative_luminance(r, g, b):
    """Calculate relative luminance per WCAG 2.1."""
    def linearize(c):
        c = c / 255.0
        return c / 12.92 if c <= 0.03928 else ((c + 0.055) / 1.055) ** 2.4
    return 0.2126 * linearize(r) + 0.7152 * linearize(g) + 0.0722 * linearize(b)

def contrast_ratio(rgb1, rgb2):
    """Calculate contrast ratio between two RGB colors."""
    l1 = relative_luminance(*rgb1)
    l2 = relative_luminance(*rgb2)
    lighter = max(l1, l2)
    darker = min(l1, l2)
    return (lighter + 0.05) / (darker + 0.05)

# Example: light gray on white
ratio = contrast_ratio((180, 180, 180), (255, 255, 255))
print(f"Contrast ratio: {ratio:.2f}:1")  # ~1.86:1 — fails WCAG AA

Fixing Low Contrast

Issue Fix
Light gray text Change text color to #000000 (black) or #333333 (dark gray)
Text over images Add a semi-transparent background, move text outside the image, or increase image opacity
Watermarks Move watermark content behind text, or ensure watermark has no text
Form field borders Use solid, visible borders with at least 3:1 contrast against the background
Links in body text Underline links (do not rely on color alone) and ensure contrast

Common Mistakes

  1. Assuming white on dark always passes — White on a medium gray background may be below 4.5:1. Always measure instead of guessing.

  2. Using color alone to convey information — A red asterisk for required fields fails WCAG 1.4.1 if there is no text alternative. Add a text label like "(required)."

  3. Low contrast watermark text — "DRAFT" or "CONFIDENTIAL" watermarks in light gray are often unreadable for low-vision users. Use dark text with rotation instead.

  4. Text in images — Text embedded in images bypasses color contrast checks. If the image text has low contrast, it is invisible to both screen readers and low-vision users.

  5. Gradient or patterned backgrounds — Text over gradients or patterns may have inconsistent contrast. Add a solid background panel behind the text.

Practice and Challenge

  1. What is the minimum contrast ratio for normal-size text under WCAG AA?
  2. How do you measure contrast ratio for an element in a PDF?
  3. Why does color-only differentiation fail WCAG 1.4.1?
  4. What contrast ratio is required for large text (18px or 14px bold)?
  5. How do you fix text over a background image with variable contrast?

Challenge: Take a PDF with at least 5 different text colors including a light gray paragraph, a colored heading, text over an image, and a form field label. Measure the contrast ratio for each element. Identify which pass and which fail WCAG AA. Fix the failures using Acrobat's edit tools.

FAQ

Does WCAG color contrast apply to PDFs?

Yes. WCAG success criteria 1.4.3 (Contrast Minimum) and 1.4.6 (Contrast Enhanced) apply to all documents, including PDFs. PDF/UA also incorporates these requirements.

Can I check contrast in Acrobat Pro?

Acrobat Pro does not have a built-in contrast checker. Use the PAC 2021 checker, Colibri, or a standalone color contrast analyzer.

What about contrast for disabled form fields?

Disabled form fields often have reduced opacity. Ensure the text remains at least 3:1 against the background, even in the disabled state.

Do PDF headers and footers need contrast?

Yes. Repeating header and footer text must meet the same contrast requirements as body text. Page numbers and document titles in footers are not exempt.

What contrast ratio does PDF/UA require?

PDF/UA references WCAG 2.0 Level AA as the baseline, which requires 4.5:1 for normal text and 3:1 for large text. Some jurisdictions require Level AAA (7:1).

Mini Project

Select a 5-page PDF with varied content including headings, body text, table text, form field labels, watermark text, and text over images. For each element, measure the contrast ratio. Create a table showing the element, foreground color, background color, ratio, pass/fail status, and the fix applied. Fix all failures.

What's Next

Proceed to PDF Tools — Acrobat, pa11y-pdf to learn about tools for creating and testing accessible PDFs, then continue to PDF Accessibility Checkers.

Built by the developers of DodaTech

Doda Browser, DodaZIP & Durga Antivirus Pro