postcss-color-padregold
v1.0.0
Published
A PostCSS plugin for the Friar Faithful. Use the padregold color keyword in CSS.
Downloads
4
Maintainers
Readme
A PostCSS plugin for the Friar Faithful. Use the padregold
color keyword in CSS.
.nlwest-is-best {
color: padregold;
}
/* becomes */
.nlwest-is-best {
color: #ffc425;
}
Credits
This plugin began as a fork of postcss-color-rebeccapurple
. Thanks to its contributors for all of your great work.
Usage
Add [PostCSS PadreGold] to your project:
npm install postcss postcss-color-padregold --save-dev
Use it as a [PostCSS] plugin:
// postcss.config.js
const postcss = require("postcss");
const postcssPadreGold = require("postcss-color-padregold");
postcss([postcssPadreGold()]).process(YOUR_CSS /*, processOptions */);