Check that two colors are wcag AA and AAA compliant.
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}
Verify
Params:
- color 1 {Object | String} : A color in the form of a object with separate r, g, b int 255 values or a hex code string prefaced with a hash (#).
- color 2 {Object | String} : A color in the form of a object with separate r, g, b int 255 values or a hex code string prefaced with a hash (#).
- font size {Number} : A int value of the font size.
(Coming soon)
(Nothing yet)
Marco Segreto
Victoria Nguyen
Copyright (c) 2014 Marco Secreto Licensed under the Public Domain.