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 🙏

© 2024 – Pkg Stats / Ryan Hefner

postcss-color-scheme

v1.0.1

Published

postcss plugin for handling prefers-color-scheme

Downloads

26

Readme

postcss-color-scheme

github.actions.changeset.badge codecov.badge MIT npm.badge

Changelog

Postcss plugin for handling prefers-color-scheme, plus tailwind support

Input

.my-class {
  color: black;
  @dark {
    color: white;
  }
}

Output

.my-class {
  color: black;
}

html[data-color-scheme="dark"] .my-class {
  color: white;
}

@media (prefers-color-scheme: dark) {
  html:not([data-color-scheme="light"]) .my-class {
    color: white;
  }
}

Installation

npm install --save-dev postcss postcss-color-scheme

Add to your postcss config

module.exports = {
  plugins: [
+   require('postcss-color-scheme'),
  ],
};

Design Decisions

You might have noticed a couple of opinionated code at the top of this document. These are extracted from my daily work, and currently serve my use cases very well. Should you have concerns, suggestions for improvements, or solution for making this more generic, feel free to open an issue. Thanks!

  1. Rely on data-color-scheme for explicit theme settings. This requires setting data-color-scheme on the root html element.

  2. Provide fallback when user has not explicitly select a theme. Let's refer to the demo above, with rules enumerated:

      /* (1) */
      .my-class {
        color: black;
      }
    
      /* (2) */
      html[data-color-scheme="dark"] .my-class {
        color: white;
      }
    
      /* (3) */
      @media (prefers-color-scheme: dark) {
        html:not([data-color-scheme="light"]) .my-class {
          color: white;
        }
      }

    Imagine your system provides 3 options: dark, light, and system (default, auto, i.e respect system preferences). There are 4 possible scenarios.

    1. User has not explicitly selected a theme (theme = system), and the system prefers light (prefers-color-scheme = light):

      --> (1) applies.

    2. User has not explicitly selected a theme (theme = system), and the system prefers dark (prefers-color-scheme = dark):

      --> (1) & (3) applies, (3) takes precedence because of its higher specificity.

    3. User selected dark (data-color-theme set to dark on root html) :

      --> (1) & (2) applies, (2) takes precedence because of its higher specificity.

    4. User selected light (data-color-theme set to light on root html) :

      --> (1) applies.

    flowchart TD
        A[Has user explicitly selected theme?] -->|Yes| B[Which mode?]
        B --> Light
        B --> Dark
        A -->|No| C[prefers-color-scheme?]
        C -->Light
        C -->Dark

Supported At Rules

| At Rule | Description | | --- | --- | | @dark | apply rules for dark color scheme | | @light | apply rules for light color scheme |

Global Variant

postcss-color-scheme supports the :global syntax, often seen in css modules and similar systems.

Input

.my-class {
  @dark global {
    color: white;
  }
}
:global(html[data-color-scheme="dark"]) .my-class {
  color: white;
}
@media (prefers-color-scheme: dark) {
  :global(html:not([data-color-scheme="light"])) .my-class {
    color: white;
  }
}

Test Cases & Examples

The following table lists test cases covered by this plugin, please refer to tests for details and to tests' input css as examples

| Test Case | Description | Input | Output | | --- | --- | --- | --- | | in media queries | @media (min-width: 768px) { .my-class { @dark { color: blue } } } | input | output | | with combined selector | .my-class, .others { @dark { color: blue } } | input | output | | with postcss-nesting | .my-class { & .nested { @dark { color: blue } } } | input | output | | with postcss-nested | .my-class { .nested { @dark { color: blue } } } | input | output | | inside :global | :global(.my-class) { @dark global { color: blue } } | input | output | | with selector at html| html { @dark { color: blue } } | input | output | | has child rules| ... | input | output |

Tailwind Support

Make sure you have installed and configured tailwindcss.

npm install --save-dev tailwindcss

Add postcss-color-scheme to your tailwind config as a plugin, and turn off the default darkMode handling.

/** @type {import("tailwindcss").Config } */
module.exports = {
  // negate default Tailwind darkMode declaration
+ darkMode: '',
+ plugins: [require('postcss-color-scheme/tailwind')],
};

Now, the following is available:

<input class="text-white dark:text-black light:border-gray-500">

Note that this tailwind plugin can be used in conjunction with the postcss plugin. They are complementary and not exclusive.

  • postcss plugin provides @dark and @light css at-rule syntax,
  • tailwind plugin provides dark: and light: classes in html.