Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

postcss-dark-theme-class

postcss29.2kMIT1.3.0TypeScript support: included

CSS solution for light/dark/auto theme switcher for websites

postcss, css, postcss-plugin, dark, dark-theme, light, auto-theme, theme-switcher

readme

PostCSS Dark Theme Class

CSS solution for light/dark/auto theme switcher for websites.

  • It doesn’t have FART flash of light theme during JS initialization.
  • Pure CSS solution. You need JS only to set HTML class, when user.
  • Automatic theme provide better UX for users with theme switching by subset/sunrise (all operating systems now have theme switching schedule).

PostCSS plugin to make switcher to force dark or light theme by copying styles from media query or light-dark() to special class.

/* Input CSS */

@media (prefers-color-scheme: dark) {
  html {
    --text-color: white
  }
  body {
    background: black
  }
}

section {
  background: light-dark(white, black);
}
/* Output CSS */

@media (prefers-color-scheme: dark) {
  html:where(:not(.is-light)) {
    --text-color: white
  }
  :where(html:not(.is-light)) body {
    background: black
  }
}
html:where(.is-dark) {
  --text-color: white
}
:where(html.is-dark) body {
  background: black
}

@media (prefers-color-scheme: dark) {
  :where(html:not(.is-light)) section {
    background: black;
  }
}
:where(html.is-dark) section {
  background: black;
}
@media (prefers-color-scheme: light) {
  :where(html:not(.is-dark)) section {
    background: white;
  }
}
:where(html.is-light) section {
  background: white;
}

By default (without classes on html), website will use browser dark/light theme. If user want to use dark theme, you set html.is-dark class. If user want to force light theme, you use html.is-light.

Sponsored by Evil Martians

Docs

Read full docs here.

changelog

Change Log

This project adheres to Semantic Versioning.

1.3.0

  • Added removeMedia option (by @aletorrado).

1.2.3

  • Fixed light-dark() support in complex values (by @VladBrok).
  • Fixed source map for light-dark() (by @romainmenke).

1.2.2

  • Fixed !important for light-dark() (by @yuheiy).

1.2.1

  • Fixed function support inside light-dark() (by @VladBrok).

1.2.0

  • Added light-dark() support (by @VladBrok).

1.1

  • Added TypeScript types.

1.0

  • Added preferred-color-scheme: light support (by Natalia Nagaeva).

0.8

  • Moved to :where() to keep specificity.
  • Removed Node.js 12, 14, and 16 support.
  • Fixed docs (by Qi Luo).

0.7.3

  • Reduced package size.

0.7.2

  • Improved docs.

0.7.1

  • Fixed compatibility with other PostCSS plugins.

0.7

  • Added already transformed rules ignoring.

0.6

  • Added rootSelector option.

0.5.2

  • Fixed parsing comments in at-rule (by @nobuhikosawai).

0.5.1

  • Added funding links.

0.5

  • Moved to PostCSS 8.
  • Moved postcss to peerDependencies.

0.4

  • Replace lightClass with lightSelector (by Mattia Astorino).
  • Replace darkClass with darkSelector (by Mattia Astorino).

0.3

  • Add support for queries like (min-width: 600px) and (prefers-color-scheme: dark).

0.2.2

  • Show error on . in the beggining of opts.darkClass or opts.lightClass.

0.2.1

  • Improve docs (by Martijn Cuppens).

0.2

  • Add lightClass.

0.1

  • Initial release.