wcag-contrast-verifier

Check that two colors are wcag AA and AAA compliant.
Getting Started
Install the module with:npm install wcag-contrast-verifier
var verify = require('wcag-constrast-verifier').verify;
var result = verify('#ffffff', '#aa3177', 22);
// -> {WCAG_AA: true|false, WCAG_AAA: true|false}
var result = verify(
{r: 255, g: 100, b: 150},
{r: 50, g: 100, b: 150},
12
);
// -> {WCAG_AA: true|false, WCAG_AAA: true|false}
Documentation
VerifyParams:
- color 1 {Object | String} : A color in the form of a object with separate r,
- color 2 {Object | String} : A color in the form of a object with separate r,
- font size {Number} : A int value of the font size.
Examples
(Coming soon)Release History
(Nothing yet)Contributers
Marco SegretoVictoria Nguyen