1.0.0 • Published 2 years ago

postcss-color-padregold v1.0.0

Weekly downloads
-
License
CC0-1.0
Repository
-
Last release
2 years ago

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 */);