Modify colors using the color-mod() function in CSS
npm install postcss-color-mod-function[![NPM Version][npm-img]][npm-url]

[PostCSS color-mod() Function] lets you modify colors using the color-mod()
function in CSS, following the outdated version of [CSS Color Module Level 4] specification (05 July 2016).
⚠️ color-mod() has been removed from Color Module Level 4 specification. (Here's why)
``pcss
:root {
--brand-red: color-mod(yellow blend(red 50%));
--brand-red-hsl: color-mod(yellow blend(red 50% hsl));
--brand-red-hwb: color-mod(yellow blend(red 50% hwb));
--brand-red-dark: color-mod(red blackness(20%));
}
/ becomes /
:root {
--brand-red: rgb(255, 127.5, 0);
--brand-red-hsl: rgb(255, 127.5, 255);
--brand-red-hwb: rgb(255, 127.5, 0);
--brand-red-dark: rgb(204, 0, 0);
}
/ or, using stringifier(color) { return color.toString() } /
:root {
--brand-red: rgb(100% 50% 0% / 100%);
--brand-red-hsl: hsl(30 100% 50% / 100%);
--brand-red-hwb: hwb(30 0% 0% / 100%);
--brand-red-dark: hwb(0 0% 20% / 100%);
}
`
The color-mod() function accepts rgb(), legacy comma-separated rgb(),rgba(), hsl(), legacy comma-separated hsl(), hsla(), hwb(), andcolor-mod() colors, as well as 3, 4, 6, and 8 digit hex colors, and named
colors without the need for additional plugins.
Implemention details are available in
the specification.
The color-mod() function accepts red(), green(), blue(), a() /alpha(), rgb(), h() / hue(), s() / saturation(), l() /lightness(), w() / whiteness(), b() / blackness(), tint(),shade(), blend(), blenda(), and contrast() color adjusters.
Implemention details are available in
the specification.
By default, var() variables will be used if their corresponding Custom:root
Properties are found in a rule, or if a fallback value is specified.
Add [PostCSS color-mod() Function] to your project:
`bash`
npm install postcss postcss-color-mod-function --save-dev
Use [PostCSS color-mod() Function] to process your CSS:
`js
const postcssColorMod = require('postcss-color-mod-function');
postcssColorMod.process(YOUR_CSS /, processOptions, pluginOptions /);
`
Or use it as a [PostCSS] plugin:
`js
const postcss = require('postcss');
const postcssColorMod = require('postcss-color-mod-function');
postcss([
postcssColorMod(/ pluginOptions /)
]).process(YOUR_CSS /, processOptions /);
`
[PostCSS color-mod() Function] runs in all Node environments, with special instructions for:
| Node | PostCSS CLI | Webpack | Create React App | Gulp | Grunt |
| --- | --- | --- | --- | --- | --- |
The stringifier option defines how transformed colors will be produced in CSS.rgb()
By default, legacy and rgba() colors are produced, but this can be
easily updated to support [CSS Color Module Level 4 colors] colors.
`js
import postcssColorMod from 'postcss-color-mod-function';
postcssColorMod({
stringifier(color) {
return color.toString(); // use CSS Color Module Level 4 colors (rgb, hsl, hwb)
}
});
`
Future major releases of [PostCSS color-mod() Function] may reverse this
functionality so that CSS Color Module Level 4 colors are produced by default.
The unresolved option defines how unresolved functions and arguments shouldthrow
be handled. The available options are , warn, and ignore. Thethrow
default option is to .
If ignore is used, the color-mod() function will remain unchanged.
`js
import postcssColorMod from 'postcss-color-mod-function';
postcssColorMod({
unresolved: 'ignore' // ignore unresolved color-mod() functions
});
`
The transformVars option defines whether var() variables used withincolor-mod() should be transformed into their corresponding Custom Properties:root
available in , or their fallback value if it is specified. By default,var() variables will be transformed.
However, because these transformations occur at build time, they cannot be
considered accurate. Accurately resolving cascading variables relies on
knowledge of the living DOM tree.
The importFrom option allows you to import variables from other sources,
which might be CSS, JS, and JSON files, and directly passed objects.
`js`
postcssColorMod({
importFrom: 'path/to/file.css' // :root { --brand-dark: blue; --brand-main: var(--brand-dark); }
});
`pcss
.brand-faded {
color: color-mod(var(--brand-main) a(50%));
}
/ becomes /
.brand-faded {
color: rgba(0, 0, 255, .5);
}
`
Multiple files can be passed into this option, and they will be parsed in the
order they were received. JavaScript files, JSON files, and objects will need
to namespace custom properties under a customProperties orcustom-properties key.
`js`
postcssColorMod({
importFrom: [
'path/to/file.css', // :root { --brand-dark: blue; --brand-main: var(--brand-dark); }
'and/then/this.js', // module.exports = { customProperties: { '--brand-dark': 'blue', '--brand-main': 'var(--brand-dark)' } }
'and/then/that.json', // { "custom-properties": { "--brand-dark": "blue", "--brand-main": "var(--brand-dark)" } }
{
customProperties: {
'--brand-dark': 'blue',
'--brand-main': 'var(--brand-dark)'
}
}
]
});
Variables may reference other variables, and this plugin will attempt to
resolve them. If transformVars is set to false then importFrom` will not
be used.
[npm-img]: https://img.shields.io/npm/v/postcss-color-mod-function.svg
[npm-url]: https://www.npmjs.com/package/postcss-color-mod-function
[CSS Color Module Level 4]: https://www.w3.org/TR/2016/WD-css-color-4-20160705/#funcdef-color-mod
[Gulp PostCSS]: https://github.com/postcss/gulp-postcss
[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss
[PostCSS]: https://github.com/postcss/postcss
[PostCSS color-mod() Function]: https://github.com/csstools/postcss-color-mod-function