PostCSS plugin for creating colors by WCAG contrast ratio
Find a file
2019-01-03 10:46:21 -06:00
.gitignore Initial commit 2019-01-03 10:46:21 -06:00
index.js Initial commit 2019-01-03 10:46:21 -06:00
package.json Initial commit 2019-01-03 10:46:21 -06:00
README.md Initial commit 2019-01-03 10:46:21 -06:00
yarn.lock Initial commit 2019-01-03 10:46:21 -06:00

postcss-color-contrast-ratio

PostCSS plugin which allows for creation of colors based upon WCAG contrast ratios.

In:

body {
    color: crab(5, 0, 0);
}

Out:

body {
    color: #717171;
}

This readme is a stub. It will contain more information in the future.