# @csstools/postcss-color-mix-variadic-function-arguments

> Mix any number of colors with the color-mix function in CSS

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

## Install

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

## Health

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

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

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 2.0.12 |
| Published | 2026-09-13 |
| First published | 2025-05-27 |
| Weekly downloads | 0 |
| License | MIT-0 |
| TypeScript types | none |
| Module format | ESM |
| Node | >=20.19.0 |
| Dependencies | 5 |
| Unpacked size | 7.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1051 |
| Maintainers | jonathantneal, alaguna, romainmenke |
| Keywords | color-mix, css, interpolation, postcss-plugin, syntax, variadic |

## Links

- npm: https://www.npmjs.com/package/@csstools/postcss-color-mix-variadic-function-arguments
- Repository: https://github.com/csstools/postcss-plugins
- Homepage: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-mix-variadic-function-arguments#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-variadic-function-arguments

## 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

- 2.0.12 (latest) — 2026-09-13
- 2.0.11 — 2026-09-06
- 2.0.10 — 2026-08-31
- 2.0.9 — 2026-08-25
- 2.0.8 — 2026-08-15
- 2.0.7 — 2026-07-22
- 2.0.6 — 2026-06-28
- 2.0.5 — 2026-06-14
- 2.0.4 — 2026-05-13
- 2.0.3 — 2026-04-12
- 2.0.2 — 2026-02-21
- 2.0.1 — 2026-01-25
- 2.0.0 — 2026-01-14
- 1.0.2 — 2025-09-21
- 1.0.1 — 2025-08-22
- … 1 more at https://npm.io/package/@csstools/postcss-color-mix-variadic-function-arguments/versions

## README

# PostCSS Color Mix Variadic Function Arguments [<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-variadic-function-arguments --save-dev`

[PostCSS Color Mix Variadic Function Arguments] lets you use the `color-mix()` function with any number of arguments following the [CSS Color 5 Specification].

```css
.red {
	color: color-mix(in srgb, red);
}

.grey {
	color: color-mix(in srgb, red, lime, blue);
}

/* becomes */

.red {
	color: rgb(255, 0, 0);
}

.grey {
	color: rgb(85, 85, 85);
}
```

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

## Usage

Add [PostCSS Color Mix Variadic Function Arguments] to your project:

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

Use it as a [PostCSS] plugin:

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

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



## Options

### preserve

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

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

```css
.red {
	color: color-mix(in srgb, red);
}

.grey {
	color: color-mix(in srgb, red, lime, blue);
}

/* becomes */

.red {
	color: rgb(255, 0, 0);
	color: color-mix(in srgb, red);
}

.grey {
	color: rgb(85, 85, 85);
	color: color-mix(in srgb, red, lime, blue);
}
```

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

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

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