PostCSS plugin for creating colors by WCAG contrast ratio
.gitignore | ||
index.js | ||
package.json | ||
README.md | ||
yarn.lock |
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.