A React-based accessibility toolkit to make any website accessible. a11ize is fast, extensible, and most importantly, lightweight (21.55 kb gzipped without core-js).
Check out a live demo at https://risingyouth.ca.
a11ize is based on the Fluid preferences framework.
- Text Sizing
- Font Style
- Bundles Open Dyslexic by default
- Line Spacing
- Word Spacing
- Custom high-contrast colour filters
- Enhanced Inputs
- Table of Contents
- Dynamically generated from semantic HTML
- i18n Support (PRs welcomed!)
- Ensure that text sizes are defined in
rem
s
npm install @takingitglobal/a11ize
Wrap the content you want to be modified by a11ize in the AccessibilityButton
tag.
import A11yWrapper from "@takingitglobal/a11ize"
...
<A11yWrapper {...options}>
Site content here.
</A11yWrapper>
Add the id of accessible-content
to an element so that it wraps the content you want a11ize to affect (generally the entire page).
<div id="accessible-content">Site content here.</div>
<script>
A11ySettings = {
...options,
};
</script>
<script src="https://cdn.jsdelivr.net/npm/@takingitglobal/a11ize@1/dist/with-react/index.js"></script>
For wider browser compability, use the version with CoreJS bundled in.
<div id="accessible-content">Site content here.</div>
<script>
A11ySettings = {
...options,
};
</script>
<script src="https://cdn.jsdelivr.net/npm/@takingitglobal/a11ize@1/dist/with-react-cjs/index.js"></script>
Cache times on jsdelivr are relatively long, so if you want the latest release replace the @1
with the version you'd like to use.
All options are optional and default to the values below.
{
primaryColor: '#921d5b',
secondaryColor: '#01364c',
buttonColor: '#fff', // text colour of the a11y button
activePanels: [ // enable/disable panels as needed
'textsize',
'fontfamily',
'linespacing',
'letterspacing',
'wordspacing',
'contrast',
'clickables',
'toc',
],
lang: 'en', // fallback to 'en' if set ISO code is not found
sticky: false, // make the menu stick to the top while scrolling
// for non-React usage
wrapperId: 'accessible-content' // override the a11ize target element
}
If you're able to translate the text in a11ize to another language, please make a PR with the new YAML file of translations.
Example YAML files are in src/i18n/en.yml
. The translated text should match to the appropriate key, with the language code as the filename.
a11ize is largely inspired by OCAD University's Infusion framework, which is a part of the Fluid Project. We aimed to create a lighter, and more widely usable a11y toolkit that could work for any website with minimal modifications.
a11ize bundles the Open Dyslexic font face by default. Please make sure to abide by their licensing rules if you choose to use Open Dyslexic in your own projects.