0.1.0 • Published 9 years ago

postcss-color-pantone v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

postcss-color-pantone

Build Status

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