Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.06 KB

README.md

File metadata and controls

44 lines (32 loc) · 1.06 KB

PostCSS Redundant Color Vars

npm Build Status

PostCSS plugin that fixes a bug in safari when using custom properties in certain color declarations.

Input

.foo {
  border: 1px solid hsla(var(--primary-color), 0.5);
}

.bar {
  box-shadow: inset 1px 1px 4px rgb(var(--secondary-color));
}

Output

.foo {
  --redundant-border: hsla(var(--primary-color), 0.5);
  border: 1px solid var(--redundant-border);
}

.bar {
  --redundant-box-shadow: rgb(var(--secondary-color));
  box-shadow: inset 1px 1px 4px var(--redundant-box-shadow);
}

Usage

postcss([require('postcss-redundant-color-vars')]);

See PostCSS docs for examples for your environment.