npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

postcss-color-extractor

v1.0.6

Published

This plugin separates declarations into those that contain colors and those that do not.

Downloads

90

Readme

Postcss color extractor

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:

  • The 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 merging
  • removeFromSelector: 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.