
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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 14 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.