Minify colors in your CSS files with PostCSS.
With npm do:
npm install postcss-colormin --save
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.
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.
Pull requests are welcome. If you add functionality, then please add unit tests to cover it.
MIT © Ben Briggs
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.