lhl 7eff0e2ec0 1-9 3 ヶ月 前
..
dist 7eff0e2ec0 1-9 3 ヶ月 前
node_modules 7eff0e2ec0 1-9 3 ヶ月 前
CHANGELOG.md 7eff0e2ec0 1-9 3 ヶ月 前
LICENSE-MIT 7eff0e2ec0 1-9 3 ヶ月 前
README.md 7eff0e2ec0 1-9 3 ヶ月 前
package.json 7eff0e2ec0 1-9 3 ヶ月 前

README.md

postcss-colormin Build Status NPM version Dependency Status

Minify colors in your CSS files with PostCSS.

Install

With npm do:

npm install postcss-colormin --save

Example

var postcss = require('postcss')
var colormin = require('postcss-colormin');

var css = 'h1 {color: rgba(255, 0, 0, 1)}';
console.log(postcss(colormin()).process(css).css);

// => 'h1 {color:red}'

For more examples see the tests.

API

colormin([options])

options

legacy

Type: boolean
Default: false

Set this to true to enable IE < 10 compatibility; the browser chokes on the transparent keyword, so in this mode the conversion from rgba(0,0,0,0) is turned off.

Contributing

Pull requests are welcome. If you add functionality, then please add unit tests to cover it.

License

MIT © Ben Briggs