0.2.0 • Published 4 years ago

a11y-colors v0.2.0

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

Forward

Check for automated AA and AAA conformance color contrast according to the WCAG

CircleCI

Forward is an automated accessibility color contrast checker that receives a color palette as the input and returns all its possible AA and AAA color contrast combinations.

Uploading Colors

Currently, you can upload a color palette in JSON format. It's an array containing color objects. Each object has a "name" property and a "rgb" property containing an array with the rgb values r, g, b.

JSON File Example

[
  {
    "name": "Light Pink",
    "rgb": [255, 176, 193]
  },
  {
    "name": "Cyclamen",
    "rgb": [243, 116, 174]
  },
  {
    "name": "Light Crimson",
    "rgb": [234, 99, 140]
  }
}

Develop

  • :rocket: Node.js >=8
  • :cat2: yarn >= 1.12
  git clone https://github.com/Palmaswell/forward.git
  cd forward
  yarn
  
  yarn dev

  # In a second terminal window
  yarn test --watchAll

Contribute

Feel free to contribute! Open an issue, submit a Pull Request or let’s discuss what should be next. ❤️

0.2.0

4 years ago

0.1.0

4 years ago