
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@csstools/postcss-light-dark-function
Advanced tools
npm install @csstools/postcss-light-dark-function --save-dev
PostCSS Light Dark Function lets you use the light-dark color function in
CSS, following the CSS Color 5 Specification.
Read more about this feature on mdn:
light-dark()color-schemeWith both features combined you can mix and match color schemes in a single document, while also respecting the user's preferences.
.foo {
color: light-dark(pink, magenta);
}
.bar {
--bar: light-dark(cyan, deepskyblue);
}
/* becomes */
.foo {
--csstools-light-dark-toggle--0: var(--csstools-color-scheme--light) magenta;
color: var(--csstools-light-dark-toggle--0, pink);
color: light-dark(pink, magenta);
}
.bar {
--csstools-light-dark-toggle--1: var(--csstools-color-scheme--light) deepskyblue;
--bar: var(--csstools-light-dark-toggle--1, cyan);
@supports not (color: light-dark(tan, tan)) {
& * {
--csstools-light-dark-toggle--1: var(--csstools-color-scheme--light) deepskyblue;
--bar: var(--csstools-light-dark-toggle--1, cyan);
}
}
}
@supports (color: light-dark(red, red)) {
.bar {
--bar: light-dark(cyan, deepskyblue);
}
}
Declare that your document supports both light and dark mode:
:root {
color-scheme: light dark;
}
/* becomes */
:root {
--csstools-color-scheme--light: initial;
color-scheme: light dark;
}@media (prefers-color-scheme: dark) {:root {
--csstools-color-scheme--light: ;
}
}
Dynamically alter the supported color scheme for some elements:
:root {
/* Root only supports light mode */
color-scheme: light;
}
.foo {
/* This element and its children only support dark mode */
color-scheme: dark;
}
/* becomes */
:root {
/* Root only supports light mode */
--csstools-color-scheme--light: initial;
color-scheme: light;
}
.foo {
/* This element and its children only support dark mode */
--csstools-color-scheme--light: ;
color-scheme: dark;
}
Add PostCSS Light Dark Function to your project:
npm install postcss @csstools/postcss-light-dark-function --save-dev
Use it as a PostCSS plugin:
const postcss = require('postcss');
const postcssLightDarkFunction = require('@csstools/postcss-light-dark-function');
postcss([
postcssLightDarkFunction(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
The preserve option determines whether the original notation
is preserved. By default, it is preserved.
postcssLightDarkFunction({ preserve: false })
.foo {
color: light-dark(pink, magenta);
}
.bar {
--bar: light-dark(cyan, deepskyblue);
}
/* becomes */
.foo {
--csstools-light-dark-toggle--0: var(--csstools-color-scheme--light) magenta;
color: var(--csstools-light-dark-toggle--0, pink);
}
.bar {
--csstools-light-dark-toggle--1: var(--csstools-color-scheme--light) deepskyblue;
--bar: var(--csstools-light-dark-toggle--1, cyan);
& * {
--csstools-light-dark-toggle--1: var(--csstools-color-scheme--light) deepskyblue;
--bar: var(--csstools-light-dark-toggle--1, cyan);
}
}
The enableProgressiveCustomProperties option determines whether the original notation
is wrapped with @supports when used in Custom Properties. By default, it is enabled.
[!NOTE] We only recommend disabling this when you set
preservetofalseor if you bring your own fix for Custom Properties.
See what the plugin does in its README.
postcssLightDarkFunction({ enableProgressiveCustomProperties: false })
FAQs
Use the light-dark() color function in CSS
The npm package @csstools/postcss-light-dark-function receives a total of 1,185,631 weekly downloads. As such, @csstools/postcss-light-dark-function popularity was classified as popular.
We found that @csstools/postcss-light-dark-function demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.