
Security News
Open VSX Begins Implementing Pre-Publish Security Checks After Repeated Supply Chain Incidents
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.
@csstools/postcss-gamut-mapping
Advanced tools
npm install @csstools/postcss-gamut-mapping --save-dev
PostCSS Gamut Mapping lets you use wide gamut colors with gamut mapping for specific displays following the CSS Color 4 Specification.
When out of gamut colors are naively clipped the result can be radically different.
A saturated and bright color will be much darker after clipping.
To correctly adjust colors for a narrow gamut display, the colors must be mapped.
This is done by lowering the chroma in oklch until the color is in gamut.
Using the @media (color-gamut) media feature makes it possible to only use the wide gamut colors on displays that support them.
p {
background-color: oklch(80% 0.05 0.39 / 0.5);
color: oklch(20% 0.234 0.39 / 0.5);
border-color: color(display-p3 0 1 0);
}
/* becomes */
p {
background-color: oklch(80% 0.05 0.39 / 0.5);
color: rgba(48, 0, 20, 0.5);
border-color: rgb(0, 247, 79);
}
@media (color-gamut: rec2020) {
p {
color: oklch(20% 0.234 0.39 / 0.5);
}
}
@media (color-gamut: p3) {
p {
border-color: color(display-p3 0 1 0);
}
}
Add PostCSS Gamut Mapping to your project:
npm install postcss @csstools/postcss-gamut-mapping --save-dev
Use it as a PostCSS plugin:
const postcss = require('postcss');
const postcssGamutMapping = require('@csstools/postcss-gamut-mapping');
postcss([
postcssGamutMapping(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
FAQs
Gamut map css colors to fit display specific gamuts
The npm package @csstools/postcss-gamut-mapping receives a total of 1,158,695 weekly downloads. As such, @csstools/postcss-gamut-mapping popularity was classified as popular.
We found that @csstools/postcss-gamut-mapping 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
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.

Research
/Security News
Threat actors compromised four oorzc Open VSX extensions with more than 22,000 downloads, pushing malicious versions that install a staged loader, evade Russian-locale systems, pull C2 from Solana memos, and steal macOS credentials and wallets.

Security News
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.