Accessibility

This is a guide to specify how we design our product to accommodate users of diverse physical and cognitive differences. We follow the WAI (Web Accessibility Initiative) guidelines to make the web more accessible for people with disabilities while also catering for the needs of users that are not captured through the lens of that document.

Accessibility is a basic human right and we are committed to making our product accessible to everyone. As a product and team that aims to help creators make a living, we are actively working to never exclude any creator from using our product.

Our guides are centered around the following standards:

  • WCAG - Our product's commitment to working accessibly.

  • ATAG - Authoring guidelines we follow to help creators make accessible content.

Design guidelines

We rely on designers to define a lot about how our product is used and experienced. Here are ways we can incorporate accessibility into our design process:

Color

Color is a powerful tool in design, but it can also be a barrier to accessibility. We should always consider the contrast between text and background colors to ensure readability. This is a good video guide on using accessible colors:

Typography

We should always consider the font size, line height, and font weight to ensure readability. We should also consider the use of headings to structure content and make it easier to navigate. Designs may include notes suggesting the use of headings to engineers where necessary.

Focus states

Focus states are important for users who navigate using a keyboard. We should always ensure that interactive elements have a visible focus state.

Interactive elements

Interactive elements should be easy to use and understand. We should always consider the size of interactive elements and the space between them to ensure they are easy to click or tap.

Icons

When icons are used in place of text, we should provide a readable label for screen readers in the design to guide engineers on implementing how that content should be consumed by screen readers. For example, the UI below should either have tooltips or aria-labels to describe the icons. In this case, that should also apply to the Email/Web toggles as those texts do not provide enough context for screen readers.

icons used instead of text in a UI

Engineering guidelines

Engineers are responsible for implementing the designs and ensuring that the product is accessible. Here are ways we can incorporate accessibility into our engineering process:

Semantic HTML

We should always use semantic HTML elements to structure content. This helps screen readers understand the content and navigate it more easily. For example, we should use <button> elements for buttons, <a> elements for links, and <h1> to <h6> elements for headings.

Some screen reader users are able to navigate a page by headings. This is why it is important to use headings to structure content.

ARIA attributes

ARIA attributes are used to provide additional information to screen readers. We should use ARIA attributes to provide context for screen readers where necessary. For example, we should use aria-label to provide a label for an icon or aria-hiddento hide decorative elements from screen readers.

Bad ARIA is worse than no ARIA. If you're uncertain about the use of an ARIA attribute, please consult with the team.

Icons

If an icon is complementing a text and it serves no purpose besides visual enhancement, it should be hidden from screen readers usingaria-hidden="true". When there's no text to accompany an icon, we should provide an accessible label usingaria-label.

Inputs

We should always ensure that interactive elements are keyboard accessible. This means that users should be able to navigate and interact with the product using only a keyboard. We should also ensure that interactive elements have a visible focus state.

When possible, we should have a label for all inputs. If we need the label hidden, we may apply a visually-hidden class to the label.

Placeholders

Placeholders should not be used as labels. Placeholders disappear when the user starts typing, which can be confusing for users who rely on screen readers. But also, having a placeholder so similar to a label can cause repeated information for users so we should provide examples in placeholders instead of labels.

Learn more about placeholder accessibility

Error messages

Error messages should be clear and descriptive. We should always provide a description of the error and how to fix it. We should also ensure that error messages are announced by screen readers.

Testing

We use React testing library to test frontend components. We should prefer to write tests that query components by their role or label to ensure that the component is accessible. Here are some best practices.

QA guidelines

QA plays a powerful role in every product. Automated tools are only likely to catch ~30% of accessibility issues. A human tester is needed to catch the rest. Here are ways we can incorporate accessibility into our QA process:

  • Test with a screen reader. We should always test our product with a screen reader to ensure it is accessible.

  • Test with a keyboard. We should always test our product with a keyboard to ensure it is accessible.

  • Most browsers have built-in contrast checkers. We should always check the contrast of text and background colors to ensure readability.

  • All the other guides listed for design and engineering should be tested by QA.

Resources

Tools