0

I'm working on a website design that needs to meet WCAG 2.0 AA requirements - and I'm not sure how to interpret the contrast ratio requirements:

"1.4.3 Contrast (Minimum): The visual presentation of text and images of text has a contrast ratio of at least 4.5:1, except for the following"

(reference: https://www.w3.org/WAI/WCAG21/quickref/?versions=2.0#qr-visual-audio-contrast-contrast).

Given that most (if not all) operating systems as well as browsers nowadays have contrast enhancement features built-in, what's the rationale for this requirement?

2 Answers2

2

Given that most (if not all) operating systems as well as browsers nowadays have contrast enhancement features built-in, what's the rationale for this requirement?!

  1. People can not always choose which operating system they use, for instance when using an interactive kiosk (public terminal), or won't be able to install such plugins (university computers, mobile phone, ...)

  2. WCAG defines minimum and enhanced contrast ratios. Those are still insufficient for people with important disabilities like glaucoma, LHON, ... Those requirements have to be seen as "minimal" (or enhanced), not "optimal".

  3. Certain people (like elderly people) won't know every shortcut to activate a given accessibility feature.

Adam
  • 17,838
  • 32
  • 54
1

It should not be necessary for a user who requires enhanced accessibility features to install plugins or alter settings for them to use your website/service. By meeting the WCAG guidelines on contrast (and other things) you can improve the experience for those users in a vanilla browser and operating system.

There are many contrast checkers online which help with this, I use this one. This SO question explains what the different ratings mean very well.

I like to think that when it comes to accessibility it is worth investing time in doing it properly so that more people can use your site or service. Not making your site/service accessible when it is relatively easy to do so is locking these users out. They will shop elsewhere rather than battle with browser/OS settings in order to get your website usable for them.

If it requires user customization of your site just to make it usable, that is a fail on your part.

A side benefit is that for people with nominal eye site, your site will be easier to read and look at for long periods of time if foreground items contrast well with the background. Which is something you probably want, right?

Michael Hancock
  • 2,673
  • 1
  • 18
  • 37
  • thanks for your reply. my problem is a bit more complex - i've posted another related question here: https://stackoverflow.com/questions/57182581/accessible-contrast-ratio-vs-corporate-identity-guidelines – Goren Berdichevsky Jul 24 '19 at 12:09