postcss-color-pantone
v0.1.0
Published
PostCSS plugin to convert pantone color to rgb
Downloads
5
Maintainers
Readme
postcss-color-pantone
PostCSS plugin to convert pantone colors to rgb.
.foo {
color: pantone('Green C');
}
.bar {
border: 1px solid pantone("Medium Yellow C");
}
.foo {
color: #00ab84;
}
.bar {
border: 1px solid #ffd900;
}
--
Usage
postcss([ require('postcss-color-pantone') ])
See PostCSS docs for examples for your environment.
--
License
MIT