A comprehensive, zero-dependency accessibility widget that enhances web accessibility for all users. This lightweight, single-file JavaScript solution provides 16+ accessibility features to make your website instantly more inclusive and compliant with WCAG 2.1 AA, Section 508, and EN 301 549 standards.
Note: This widget helps meet accessibility criteria but does not guarantee full compliance. Complete WCAG/Section 508 compliance requires proper HTML semantics, ARIA attributes, manual testing, and user validation.
Add widget script close to the </body> - That's it!
<script src="https://cdn.jsdelivr.net/npm/accessibility-widgets@latest/widget.js"></script>
English, Deutsch, Español, Italiano, Français, Русский, Türkçe, العربية, हिन्दी, 简体中文, 日本語, Português, বাংলা, 한국어, Tiếng Việt, Bahasa Indonesia, ไทย, Polski, Nederlands, Ελληνικά, Svenska, Norsk, Dansk, Suomi, Čeština, Magyar, Română, עברית, فارسی, اردو, ਪੰਜਾਬੀ, मराठी, తెలుగు, தமிழ், Bahasa Melayu, Filipino
Or install via NPM:
npm install accessibility-widgets// Import in your project
import 'accessibility-widgets';
// or
require('accessibility-widgets');- High Contrast Mode - 3 levels (Medium 1.3x, High 1.5x, Ultra 2.0x) for improved visibility
- Text Size Control - 4 size options (Default, Medium 20px, Large 24px, X-Large 28px)
- Line Height Adjustment - 3 spacing levels (2em, 3em, 4em) for better readability
- Text Spacing - 3 levels (Light 0.1em/0.5em, Medium 0.15em/1em, Heavy 0.25em/2em letter/word spacing)
- Text Alignment - Left, Center, or Right alignment options
- Bigger Cursor - High-contrast ~29×44px SVG cursor for better visibility
- Hide Images - Text-only mode for focused reading or bandwidth saving
- Saturation Control - 3 levels (Low 0.5x, High 10x, None/grayscale) for color intensity adjustment
- Dyslexia-Friendly Font - Comic Sans MS and other dyslexia-optimized fonts
- Font Selection - Choose between Arial, Times New Roman, or Verdana
- Animation Control - Pause all animations, transitions, and reduced motion (bundled feature for vestibular disorders)
- Screen Reader - Built-in text-to-speech using Web Speech API
- Voice Control - Hands-free navigation with 16 voice commands
- Color Blindness Filters - Protanopia, Deuteranopia, Tritanopia, and Grayscale modes
- Keyboard Navigation - Full Tab/Arrow key support with proper focus indicators
Note: Some criteria below are AAA-level (1.4.6, 1.4.8, 2.3.3, 2.5.5). The core widget targets AA conformance.
| Feature | WCAG Criteria | EU EN 301 549 | US Section 508 |
|---|---|---|---|
| High Contrast Mode | ✅ 1.4.3, 1.4.6 (AAA) | ✅ | ✅ |
| Text Size Adjustment | ✅ 1.4.4 | ✅ | ✅ |
| Text Spacing | ✅ 1.4.12 | ✅ | ✅ |
| Line Height Adjustment | ✅ 1.4.12 | ✅ | ✅ |
| Text Alignment | ✅ 1.4.8 (AAA) | ✅ | ✅ |
| Cursor Enhancement | ✅ 2.5.5 (AAA) | ✅ | ✅ |
| Pause Animations | ✅ 2.2.2, 2.3.3 (AAA) | ✅ | ✅ |
| Saturation Control | ✅ 1.4.1 | ✅ | ✅ |
| Hide Images | ✅ 1.1.1 | ✅ | ✅ |
| Dyslexia-Friendly Font | ✅ 1.4.8 (AAA) | ✅ | ✅ |
| Screen Reader | ✅ 4.1.3 | ✅ | ✅ |
| Voice Control | |||
| Color Filters | ✅ 1.4.1 | ✅ | ✅ |
<!-- jsdelivr CDN -->
<script src="https://cdn.jsdelivr.net/npm/accessibility-widgets@latest/widget.js"></script>npm install accessibility-widgets// ES6 Import
import 'accessibility-widgets/widget.js';
// CommonJS
require('accessibility-widgets/widget.js');- Download widget.js
- Include in your HTML:
<script src="path/to/widget.js"></script>The widget works out of the box with zero configuration:
<script src="https://cdn.jsdelivr.net/npm/accessibility-widgets@latest/widget.js"></script>Customize the widget by defining window.ACCESSIBILITY_WIDGET_CONFIG before loading the script:
<script>
window.ACCESSIBILITY_WIDGET_CONFIG = {
// Disable specific features
enableVoiceControl: false,
enableScreenReader: true,
// Custom styling
widgetWidth: '400px',
colors: {
primary: '#0066cc',
secondary: '#ffffff'
},
// Position on left side
widgetPosition: {
side: 'left',
left: '20px',
bottom: '20px'
}
};
</script>
<script src="https://cdn.jsdelivr.net/npm/accessibility-widgets@latest/widget.js"></script>window.ACCESSIBILITY_WIDGET_CONFIG = {
// ===== Core Feature Toggles =====
enableHighContrast: true, // 3-level high contrast mode
enableBiggerText: true, // 4-level text size control
enableTextSpacing: true, // 3-level text spacing
enablePauseAnimations: true, // Pause animations & reduced motion
enableHideImages: true, // Hide images toggle
enableDyslexiaFont: true, // Dyslexia-friendly fonts
enableBiggerCursor: true, // Large cursor
enableLineHeight: true, // 3-level line height (2em, 3em, 4em)
enableTextAlign: true, // Text alignment (left, center, right)
// ===== Advanced Features =====
enableScreenReader: true, // Built-in text-to-speech
enableVoiceControl: true, // Voice command control
enableFontSelection: true, // Font family selection
enableColorFilter: true, // Color blindness filters
// ===== Widget Layout =====
widgetWidth: '440px',
// ===== Grid Configuration =====
gridLayout: {
columns: '1fr 1fr', // Default 2-column grid
gap: '10px' // Gap between grid items
},
// ===== Position =====
widgetPosition: {
side: 'right', // 'left' or 'right'
right: '20px',
left: '20px',
bottom: '20px'
},
// ===== Colors =====
colors: {
primary: '#1663d7', // Header bg, main button, active borders
secondary: '#ffffff', // Main button icon, header text
optionBg: '#ffffff', // Option button background
optionText: '#333333', // Option button text
optionIcon: '#000000' // Option button icons
},
// ===== Button Styling =====
button: {
size: '55px',
borderRadius: '100px',
iconSize: '40px',
shadow: '0 4px 8px rgba(0, 0, 0, 0.2)'
},
// ===== Menu Styling =====
menu: {
headerHeight: '70px',
padding: '0 10px 10px 10px',
optionPadding: '20px 10px',
optionMargin: '10px',
borderRadius: '8px',
fontSize: '16px',
titleFontSize: '16px',
closeButtonSize: '44px'
},
// ===== Typography =====
typography: {
fontFamily: 'Arial, sans-serif',
fontSize: '17px',
titleFontSize: '22px',
titleFontWeight: '700',
lineHeight: '1'
},
// ===== Animation =====
animation: {
transition: '0.2s',
hoverScale: '1.05'
},
// ===== Internationalization (i18n) =====
lang: {
accessibilityMenu: 'Accessibility Menu',
closeAccessibilityMenu: 'Close Accessibility Menu',
accessibilityTools: 'Accessibility Tools',
resetAllSettings: 'Reset All Settings',
screenReader: 'Screen Reader',
voiceCommand: 'Voice Command',
textSpacing: 'Text Spacing',
pauseAnimations: 'Pause Animations',
hideImages: 'Hide Images',
dyslexiaFriendly: 'Dyslexia Friendly',
biggerCursor: 'Bigger Cursor',
lineHeight: 'Line Height',
fontSelection: 'Font Selection',
colorFilter: 'Color Filter',
textAlign: 'Text Align',
textSize: 'Text Size',
highContrast: 'High Contrast',
defaultFont: 'Default Font',
noFilter: 'No Filter',
default: 'Default',
screenReaderOn: 'Screen reader on',
screenReaderOff: 'Screen reader off',
voiceControlActivated: 'Voice control activated',
notSupportedBrowser: 'is not supported in this browser',
close: 'Close',
reset: 'Reset',
saturation: 'Saturation',
selectLanguage: 'Select Language'
},
// ===== Voice Commands (Multi-language Support) =====
voiceCommands: {
en: {
showMenu: ['show menu', 'open menu', 'accessibility menu', 'access menu'],
highContrast: ['high contrast', 'contrast', 'dark mode', 'increase contrast'],
biggerText: ['bigger text', 'large text', 'text size', 'increase text', 'bigger', 'larger text', 'text bigger', 'make text bigger', 'enlarge text'],
textSpacing: ['text spacing', 'spacing', 'letter spacing', 'text space'],
pauseAnimations: ['pause animations', 'stop animations', 'disable animations', 'no animations'],
hideImages: ['hide images', 'remove images', 'no images'],
dyslexiaFont: ['dyslexia friendly', 'dyslexia font', 'readable font', 'easy font'],
biggerCursor: ['bigger cursor', 'large cursor', 'cursor size', 'big cursor'],
lineHeight: ['line height', 'line spacing', 'space between lines', 'line space'],
textAlign: ['align text', 'text align', 'center text', 'alignment'],
screenReader: ['screen reader', 'read aloud', 'voice reader'],
voiceControl: ['voice command', 'voice control', 'voice commands'],
resetAll: ['reset all', 'reset everything', 'clear all', 'reset settings', 'reset']
},
// Additional languages: de, es, it, fr, ru, tr, ar, hi, zh-cn, jp available in widget
}
};Full multilingual support - customize all text and voice commands:
<script>
window.ACCESSIBILITY_WIDGET_CONFIG = {
lang: {
accessibilityMenu: 'Menú de Accesibilidad',
accessibilityTools: 'Herramientas de Accesibilidad',
screenReader: 'Lector de Pantalla',
highContrast: 'Alto Contraste',
biggerText: 'Texto Más Grande',
resetAllSettings: 'Restablecer Todo'
},
voiceCommands: {
es: {
showMenu: ['mostrar menú', 'abrir menú'],
highContrast: ['alto contraste'],
biggerText: ['texto grande', 'texto más grande'],
resetAll: ['reiniciar todo']
}
}
};
</script>
<script src="https://cdn.jsdelivr.net/npm/accessibility-widgets@latest/widget.js"></script>When voice control is enabled (Chrome/Edge only), use these commands:
| Command | Action |
|---|---|
| "show menu" / "open menu" | Opens accessibility menu |
| "high contrast" | Toggles contrast mode |
| "bigger text" / "large text" | Increases text size |
| "text spacing" | Toggles text spacing |
| "pause animations" | Stops all animations |
| "hide images" | Removes images |
| "dyslexia font" | Activates dyslexia-friendly font |
| "bigger cursor" | Enlarges cursor |
| "line height" | Adjusts line spacing |
| "text align" | Cycles text alignment (left/center/right) |
| "saturation" | Cycles saturation (low/high/none) |
| "font selection" / "change font" | Cycles font family |
| "color filter" | Cycles color blindness filters |
| "screen reader" | Activates text-to-speech |
| "voice command" / "voice control" | Toggles voice control on/off |
| "reset all" | Resets all settings |
All commands are fully customizable via voiceCommands configuration## 📚 Feature Details
Three contrast enhancement levels:
- Medium: 1.3x boost for subtle improvement
- High: Black background + white text + 1.5x contrast
- Ultra: Black background + yellow text + 2.0x contrast
Four size options (Default, Medium 20px, Large 24px, X-Large 28px) with smart widget exclusion to maintain UI consistency.
Three spacing levels for improved readability, especially helpful for dyslexia:
- Light: letter-spacing 0.1em, word-spacing 0.5em
- Medium: letter-spacing 0.15em, word-spacing 1em
- Heavy: letter-spacing 0.25em, word-spacing 2em
Three spacing levels (2em, 3em, 4em) to reduce visual crowding and improve reading flow.
Completely disables CSS animations and transitions (including ::before/::after pseudo-elements). Also provides reduced motion support — critical for users with vestibular disorders or ADHD.
Text-only mode with smart caching (5-second intervals) to catch dynamically loaded images.
Uses Comic Sans MS and fallback fonts optimized for dyslexia (Chalkboard SE, Bradley Hand, Brush Script MT).
Custom ~29×44px SVG cursor with high-contrast black fill and white stroke for better visibility.
Built-in TTS using Web Speech API - reads focused element text, alt attributes, and titles.
Hands-free operation with Web Speech Recognition API. Supports 16 customizable commands.
SVG-based filters for Protanopia (red-blind), Deuteranopia (green-blind), Tritanopia (blue-blind), and Grayscale modes.
Three saturation levels for color intensity adjustment:
- Low: 0.5x saturation for reduced color intensity
- High: 10x saturation for boosted color vibrancy
- None: Full grayscale (desaturated) display
Cycle through Arial (modern sans-serif), Times New Roman (traditional serif), and Verdana (screen-optimized).
- ✅ Zero Dependencies - Pure vanilla JavaScript, no frameworks required
- ✅ Lightweight - Single file, ~1900 lines minified
- ✅ Persistent Settings - localStorage saves user preferences across sessions
- ✅ Keyboard Accessible - Full Tab/Arrow key navigation with proper focus management
- ✅ ARIA Compliant - Complete ARIA labels and roles for assistive technologies
- ✅ Performance Optimized - DOM caching, efficient event delegation, debounced updates
- ✅ Error Handling - Graceful degradation for unsupported browser APIs
- ✅ Responsive Design - Works seamlessly on desktop, tablet, and mobile
- ✅ Flexible Positioning - Left or right side placement with custom offsets
- ✅ Full i18n Support - Complete text customization for any language
- ✅ Dynamic Theming - Customizable colors with SVG icon color synchronization
- ✅ Auto-initialization - Automatically loads when DOM is ready
| Browser | Core Features | Screen Reader | Voice Control |
|---|---|---|---|
| Chrome 90+ | ✅ | ✅ | ✅ |
| Edge 90+ | ✅ | ✅ | ✅ |
| Firefox 88+ | ✅ | ✅ | ❌ |
| Safari 14+ | ✅ | ✅ | ❌ |
| Opera 76+ | ✅ | ✅ | ✅ |
Note: Voice Control requires Web Speech Recognition API (Chromium-based browsers only). Screen Reader requires Web Speech Synthesis API.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Accessible Website</title>
</head>
<body>
<h1>Welcome</h1>
<p>This site is fully accessible.</p>
<!-- Add widget - automatically initializes -->
<script src="https://cdn.jsdelivr.net/npm/accessibility-widgets@latest/widget.js"></script>
</body>
</html><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Custom Accessible Site</title>
</head>
<body>
<h1>Custom Configuration</h1>
<script>
// Configure before loading widget
window.ACCESSIBILITY_WIDGET_CONFIG = {
widgetWidth: '380px',
colors: {
primary: '#9c27b0', // Purple theme
secondary: '#ffffff'
},
enableVoiceControl: false, // Disable voice control
widgetPosition: {
side: 'left',
left: '15px',
bottom: '15px'
}
};
</script>
<script src="https://cdn.jsdelivr.net/npm/accessibility-widgets@latest/widget.js"></script>
</body>
</html>Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit changes (
git commit -m 'Add amazing feature') - Push to branch (
git push origin feature/amazing-feature) - Open a Pull Request
GPL-3.0 License - See LICENSE file for details.
Sinan Isler
- Website: sinan.im
- Email: sinan@sinan.im
- GitHub: @sinanisler
- ⭐ Star this repository
- 🐛 Report bugs
- ❤️ Sponsor on GitHub
Made with ❤️ for a more accessible web