
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
postcss-color-extractor
Advanced tools
This plugin separates declarations into those that contain colors and those that do not.
This plugin separates declarations into those that contain colors and those that do not.
The selectors of those rules that contain color declarations will be modified by adding a prefix or merging with another class or attribute of your choice.
This is useful for organizing theme changes in a project, such as providing different color schemes. Despite the popularity of using CSS variables and :root declarations, this method can still be useful. This plugin was created for the ungic-sass framework, specifically to be used with the ungic-sass-theme package.
ungic-sass-theme package works with both css variables and color generation for different color schemes, and is the simplest way to separate a project into themes.
To use this plugin, you will first need to install it using npm:
npm install postcss-color-extractor
Then, you can include it in your PostCSS configuration file, example of webpack configuration
const colorExtractor = require("postcss-color-extractor");
...
{
loader: "postcss-loader",
options: {
postcssOptions: {
plugins: [
colorExtractor({
extract: input => {
console.log(input.toResult(), input.source?.input?.file);
}
})
]
}
}
}
This plugin has several options that can be passed in as an object:
extract
option is a callback function that takes as a parameter the extracted part of the data (a new selector containing declarations with colors). The function does not return any value.includeResultInOutput
: a boolean that determines whether the extracted parts should be included in the final CSS output or not.mergeMode
: a string that sets the merge mode of the selectors, can be "merge" or "before"mergeType
: a string that sets the merge type, can be "className", "attribute", "id", "tag"mergeValue
: a string | null that sets the merge value, it will be added to mergeType, null - disable mergingremoveFromSelector
: an array of objects containing a type and a match property, the plugin will remove the parts of selectors that match the type and match properties.saveInputRules
: a boolean that determines whether the input rules should be saved in the output or not.FAQs
This plugin separates declarations into those that contain colors and those that do not.
The npm package postcss-color-extractor receives a total of 15 weekly downloads. As such, postcss-color-extractor popularity was classified as not popular.
We found that postcss-color-extractor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.