README
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