postcss / postcss-custom-properties

Use Custom Properties in CSS
https://postcss.github.io/postcss-custom-properties
MIT License
596 stars 77 forks source link

Export to SCSS file #212

Closed bendobos closed 4 years ago

bendobos commented 4 years ago

In my project, I use CSS custom properties but I also need them as SCSS variables for use with libraries that are written in SCSS that need to be customized.

This is a rather simple implementation but it does the trick.

Another thing I'd like to add would be the ability to also resolve var() statements in values, so that --color: var(--blue); is transformed to --color: blue. That would allow us to export files that are free from custom properties, so we can have a "normal" SCSS var file, for example. However, this seems like a not so simple task...

Semigradsky commented 4 years ago

@bendobos Thank you! https://github.com/postcss/postcss-custom-properties/releases/tag/9.2.0