postcss-shorthand-to-background-color Build Status

PostCSS plugin to avoid using background shorthand to set the background-color only.

.foo {
  /* Input example */
  background: #fff;
}
.foo {
  /* Output example */
  background-color: #fff;
}