postcss-color-shorthand
v1.0.0
Published
Use this in CSS
Maintainers
Readme
PostCSS Color Shorthand
A PostCSS plugin which allows you to define all color properties in one go.
.example {
color: white red blue;
}Outputs:
.example {
color: white;
background-color: red;
border-color: blue;
}Setup
Add it to your project:
npm install postcss-color-shorthand --save-dev