
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
postcss-classes-to-mixins
Advanced tools
PostCSS plugin to intelligently convert CSS classes to SASS, Less and Stylus mixins
PostCSS plugin to intelligently convert CSS classes to SASS, Less and Stylus mixins.
npm install postcss-classes-to-mixins
Input:
/* style.css */
.red-btn {
background: red;
color: white;
}
Output:
/* style.scss */
@mixin red-btn() {
background: red;
color: white;
}
import postcss from 'postcss'
import classesToMixins from 'postcss-classes-to-mixins'
postcss([
classesToMixins({ // Object: options
scss: 'style.scss', // String: sass output
less: 'style.less' // String: less output
styl: 'style.styl', // String: stylus output
})
]).process('style.css')
This will write the output to the file paths specified. See PostCSS docs for examples for your environment.
Now, import the exported stylesheet and start using the mixins:
/* my.scss */
@import 'style.scss'
.red-green-btn {
@include red-button;
color: green;
}
When sharing CSS between projects you often want to distribute it so people can consume it in Sass, Less and Stylus. This can be tricky without maintaining separate versions of the code written in each of these languages. Also, when loading different versions of the same stylesheet globally (by widgets on the same page) name space collisions will eventually occur, resulting in styling errors.
This plugin will solve that:
Versioning: Class names from the exported CSS are no longer global and won't collide with each other.
Instead they are built into your own classes by extending them. This also makes your HTML more clean, as you don't need to use several
classes (class="standard-btn red-btn my-btn") to style one thing.
Three shaking: Using mixins you only include the styles that you actually use in your project, which is nice for load. Loading the entire stylesheet globally (several times for each widget) is wasteful and not nice.
FAQs
PostCSS plugin to intelligently convert CSS classes to SASS, Less and Stylus mixins
The npm package postcss-classes-to-mixins receives a total of 1 weekly downloads. As such, postcss-classes-to-mixins popularity was classified as not popular.
We found that postcss-classes-to-mixins demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 147 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.