fixing-accessibility

Installation
SKILL.md

Fixing Accessibility — WCAG 2.1 AA Audit & Remediation

Before You Start

  1. Always read the target file(s) before auditing. Never audit from memory.
  2. Read frontend/src/styles/responsive.css to understand existing accessibility patterns.
  3. Read frontend/src/styles/global.css for the skip-nav and focus indicator patterns already in place.

12-Point Audit Checklist

Run each check against the target component. Report findings using the output format below.

1. Color Contrast (WCAG 1.4.3)

  • Text on background must meet 4.5:1 ratio (normal text) or 3:1 (large text ≥18px bold / ≥24px)
  • Check: --color-text (#2d3748) on --color-bg (#ffffff) = 10.2:1 (passes)
  • Check: --color-text-light (#718096) on --color-bg (#ffffff) = 4.6:1 (passes, barely)
  • Watch for: .text-muted on colored backgrounds, badge text on badge backgrounds, placeholder text
Related skills
Installs
1
First Seen
Mar 4, 2026