Design, implement, and audit inclusive digital products using WCAG 2.2 Level AA standards. Use this skill to generate semantic ARIA for Web and accessibility traits for Web and Native platforms (iOS/Android).
Design, implement, and audit inclusive digital products using WCAG 2.2 Level AA standards. Use this skill to generate semantic ARIA for Web and accessibility traits for Web and Native platforms (iOS/Android).
origin
Multiversal
Accessibility (WCAG 2.2)
This skill ensures that digital interfaces are Perceivable, Operable, Understandable, and Robust (POUR) for all users, including those using screen readers, switch controls, or keyboard navigation. It focuses on the technical implementation of WCAG 2.2 success criteria.
When to Use
Defining UI component specifications for Web, iOS, or Android.
Auditing existing code for accessibility barriers or compliance gaps.
Implementing new WCAG 2.2 standards like Target Size (Minimum) and Focus Appearance.
POUR Principles: The foundation of WCAG (Perceivable, Operable, Understandable, Robust).
Semantic Mapping: Using native elements over generic containers to provide built-in accessibility.
Accessibility Tree: The representation of the UI that assistive technologies actually "read."
Focus Management: Controlling the order and visibility of the keyboard/screen reader cursor.
Labeling & Hints: Providing context through aria-label, accessibilityLabel, and contentDescription.
How It Works
Step 1: Identify the Component Role
Determine the functional purpose (e.g., Is this a button, a link, or a tab?). Use the most semantic native element available before resorting to custom roles.
Step 2: Define Perceivable Attributes
Ensure text contrast meets 4.5:1 (normal) or 3:1 (large/UI).
Add text alternatives for non-text content (images, icons).
Implement responsive reflow (up to 400% zoom without loss of function).
Div-Buttons: Using a <div> or <span> for a click event without adding a role and keyboard support.
Color-Only Meaning: Indicating an error or status only with a color change (e.g., turning a border red).
Uncontained Modal Focus: Modals that don't trap focus, allowing keyboard users to navigate background content while the modal is open. Focus must be contained and escapable via the Escape key or an explicit close button (WCAG SC 2.1.2).
Redundant Alt Text: Using "Image of..." or "Picture of..." in alt text (screen readers already announce the role "Image").
Best Practices Checklist
Interactive elements meet the 24x24px (Web) or 44x44pt (Native) target size.
Focus indicators are clearly visible and high-contrast.
Modals contain focus while open, and release it cleanly on close (Escape key or close button).
Dropdowns and menus restore focus to the trigger element on close.
Forms provide text-based error suggestions.
All icon-only buttons have a descriptive text label.