|
| 1 | +# Accessibility Guidelines |
| 2 | + |
| 3 | +### Why Accessibility Matters |
| 4 | +Accessibility ensures that people of all abilities can use OnDemand Loop effectively. |
| 5 | +Accessible features often improve the overall usability of the product, reduce friction for everyone, and demonstrate respect for our diverse user base. |
| 6 | +Building with accessibility in mind also reduces long-term maintenance costs by avoiding retrofits. |
| 7 | + |
| 8 | +### Current State of Accessibility |
| 9 | +We have implemented several accessibility-conscious practices across the application, such as: |
| 10 | + |
| 11 | +- Using semantic HTML where possible |
| 12 | +- Applying ARIA labels to clarify the purpose of interactive components for assistive technologies |
| 13 | +- Providing keyboard navigation for primary workflows so users are not blocked by pointer-only interactions |
| 14 | +- Improving color contrast between text and backgrounds in core UI areas |
| 15 | + |
| 16 | +These measures improve the experience, but the application is **not fully compliant with accessibility standards** (e.g., WCAG, Section 508). |
| 17 | +While we strive to follow best practices, the current state should not be interpreted as certification or full accessibility compliance. |
| 18 | + |
| 19 | +### Developer Responsibility |
| 20 | +Every change to the application is an opportunity to improve accessibility. When developing new features or modifying existing ones, you should: |
| 21 | + |
| 22 | +- Favor semantic HTML elements and landmarks to convey structure and meaning (avoid relying only on `<div>` and `<span>`) |
| 23 | +- Ensure all interactive elements (buttons, links, inputs) are accessible via keyboard |
| 24 | +- Provide clear and descriptive labels for inputs and form controls (visible label, `aria-label`, or equivalent association) |
| 25 | +- Check that color contrast meets at least minimum accessibility requirements |
| 26 | +- Apply ARIA attributes only where necessary and ensure they remain in sync with component state |
| 27 | +- Test new functionality with keyboard navigation and screen reader tools when possible |
| 28 | + |
| 29 | +### Limitations |
| 30 | +At this stage, the application does not guarantee compliance with any accessibility standard. |
| 31 | + |
| 32 | +Our goal is **incremental improvement**—making the application more accessible over time without giving a false impression of full accessibility. |
| 33 | + |
| 34 | +### Quick Checklist for Developers |
| 35 | +Before submitting your changes, review the following: |
| 36 | + |
| 37 | +- [ ] Did I use semantic HTML tags and landmarks appropriately? |
| 38 | +- [ ] Can I navigate my feature entirely with a keyboard? |
| 39 | +- [ ] Do all inputs and interactive elements have clear, accessible labels or names? |
| 40 | +- [ ] Is the color contrast sufficient for text and essential UI elements? |
| 41 | +- [ ] Did I avoid unnecessary or incorrect ARIA attributes, and keep them in sync with UI state? |
| 42 | +- [ ] Did I test the main user paths with keyboard navigation or assistive tools? |
| 43 | + |
| 44 | + |
| 45 | +--- |
| 46 | + |
| 47 | +By keeping accessibility in mind with every change, we ensure steady progress toward a more inclusive application. Even small improvements add up over time. |
| 48 | + |
| 49 | +!!! info "Testing Tools and Resources" |
| 50 | + |
| 51 | + **Accessibility Testing Tools:** |
| 52 | + |
| 53 | + - [WAVE Web Accessibility Evaluation Tool](https://wave.webaim.org/) — Browser extension for identifying accessibility issues |
| 54 | + - [axe DevTools](https://www.deque.com/axe/devtools/) — Browser extension for automated accessibility testing |
| 55 | + - [Lighthouse Accessibility Audit](https://developers.google.com/web/tools/lighthouse) — Built into Chrome DevTools |
| 56 | + - [NVDA Screen Reader](https://www.nvaccess.org/) — Free screen reader for testing (Windows) |
| 57 | + - [VoiceOver](https://www.apple.com/accessibility/vision/) — Built-in screen reader for macOS |
| 58 | + |
| 59 | + **Standards Reference:** |
| 60 | + |
| 61 | + - [WCAG 2.1 Guidelines](https://www.w3.org/TR/WCAG21/) — Web Content Accessibility Guidelines (A and AA levels) |
| 62 | + - [WebAIM Resources](https://webaim.org/) — Practical accessibility guidance and tutorials |
0 commit comments