# @csstools/postcss-color-mix-function

> Use the color-mix function in CSS

Latest version **4.0.12** (published 2026-09-13) · MIT-0 license · 0 weekly downloads

## Install

```sh
npm install @csstools/postcss-color-mix-function
pnpm add @csstools/postcss-color-mix-function
yarn add @csstools/postcss-color-mix-function
bun add @csstools/postcss-color-mix-function
```

## Health

**Score 60/100 (C)** — status: active.

Positive: esm support; no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 4.0.12 |
| Published | 2026-09-13 |
| First published | 2023-03-25 |
| Weekly downloads | 0 |
| License | MIT-0 |
| TypeScript types | none |
| Module format | ESM |
| Node | >=20.19.0 |
| Dependencies | 5 |
| Unpacked size | 7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1052 |
| Maintainers | jonathantneal, alaguna, romainmenke |
| Keywords | color-mix, css, display-p3, interpolation, postcss-plugin, prophoto-rgb, rec2020, rgb, rgba, srgb-linear, syntax, xyz |

## Links

- npm: https://www.npmjs.com/package/@csstools/postcss-color-mix-function
- Repository: https://github.com/csstools/postcss-plugins
- Homepage: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-mix-function#readme
- Issues: https://github.com/csstools/postcss-plugins/issues
- Funding: https://github.com/sponsors/csstools
- npm.io page: https://npm.io/package/@csstools/postcss-color-mix-function

## Dependencies (5)

- [@csstools/utilities](https://npm.io/package/@csstools/utilities.md) ^3.0.0
- [@csstools/css-tokenizer](https://npm.io/package/@csstools/css-tokenizer.md) ^4.0.0
- [@csstools/css-color-parser](https://npm.io/package/@csstools/css-color-parser.md) ^4.2.3
- [@csstools/css-parser-algorithms](https://npm.io/package/@csstools/css-parser-algorithms.md) ^4.0.0
- [@csstools/postcss-progressive-custom-properties](https://npm.io/package/@csstools/postcss-progressive-custom-properties.md) ^5.1.3

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 4.0.12 (latest) — 2026-09-13
- 4.0.11 — 2026-09-06
- 4.0.10 — 2026-08-31
- 4.0.9 — 2026-08-25
- 4.0.8 — 2026-08-15
- 4.0.7 — 2026-07-22
- 4.0.6 — 2026-06-28
- 4.0.5 — 2026-06-14
- 4.0.4 — 2026-05-13
- 4.0.3 — 2026-04-12
- 4.0.2 — 2026-02-21
- 4.0.1 — 2026-01-25
- 4.0.0 — 2026-01-14
- 3.0.12 — 2025-09-21
- 3.0.11 — 2025-08-22
- … 35 more at https://npm.io/package/@csstools/postcss-color-mix-function/versions

## README

# PostCSS Color Mix Function [<img src="https://postcss.github.io/postcss/logo.svg" alt="PostCSS Logo" width="90" height="90" align="right">][PostCSS]

`npm install @csstools/postcss-color-mix-function --save-dev`

[PostCSS Color Mix Function] lets you use the `color-mix()` function following the [CSS Color 5 Specification].

```css
.purple_plum {
	color: color-mix(in lch, purple 50%, plum 50%);
}

/* becomes */

.purple_plum {
	color: rgb(175, 92, 174);
}
```

> [!NOTE]
> We can not dynamically resolve `var()` arguments in `color-mix()`, only static values will work.

## Usage

Add [PostCSS Color Mix Function] to your project:

```bash
npm install postcss @csstools/postcss-color-mix-function --save-dev
```

Use it as a [PostCSS] plugin:

```js
const postcss = require('postcss');
const postcssColorMixFunction = require('@csstools/postcss-color-mix-function');

postcss([
	postcssColorMixFunction(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
```



## Options

### preserve

The `preserve` option determines whether the original notation
is preserved. By default, it is not preserved.

```js
postcssColorMixFunction({ preserve: true })
```

```css
.purple_plum {
	color: color-mix(in lch, purple 50%, plum 50%);
}

/* becomes */

.purple_plum {
	color: rgb(175, 92, 174);
	color: color-mix(in lch, purple 50%, plum 50%);
}
```

[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test
[css-url]: https://cssdb.org/#color-mix
[discord]: https://discord.gg/bUadyRwkJS
[npm-url]: https://www.npmjs.com/package/@csstools/postcss-color-mix-function

[PostCSS]: https://github.com/postcss/postcss
[PostCSS Color Mix Function]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-mix-function
[CSS Color 5 Specification]: https://www.w3.org/TR/css-color-5/#color-mix

---
_Source: https://npm.io/package/@csstools/postcss-color-mix-function · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
