# @csstools/postcss-syntax-descriptor-syntax-production

> Use the syntax production in syntax descriptors

Latest version **2.0.0** (published 2026-01-14) · MIT-0 license · 0 weekly downloads

## Install

```sh
npm install @csstools/postcss-syntax-descriptor-syntax-production
pnpm add @csstools/postcss-syntax-descriptor-syntax-production
yarn add @csstools/postcss-syntax-descriptor-syntax-production
bun add @csstools/postcss-syntax-descriptor-syntax-production
```

## Health

**Score 55/100 (C)** — status: stable.

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

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 2.0.0 |
| Published | 2026-01-14 |
| First published | 2025-12-27 |
| Weekly downloads | 0 |
| License | MIT-0 |
| TypeScript types | none |
| Module format | ESM |
| Node | >=20.19.0 |
| Dependencies | 1 |
| Unpacked size | 6.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1052 |
| Maintainers | jonathantneal, alaguna, romainmenke |
| Keywords | postcss-plugin |

## Links

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

## Dependencies (1)

- [@csstools/css-tokenizer](https://npm.io/package/@csstools/css-tokenizer.md) ^4.0.0

## Recent versions

- 2.0.0 (latest) — 2026-01-14
- 1.0.1 — 2025-12-27
- 1.0.0 — 2025-12-27

## README

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

`npm install @csstools/postcss-syntax-descriptor-syntax-production --save-dev`

[PostCSS Syntax Descriptor Syntax Production] lets you use the `<syntax>` production in `syntax` descriptors following the [CSS Specification].

```css
@property --color {
	inherits: true;
	initial-value: black;
	syntax: <color>;
}

/* becomes */

@property --color {
	inherits: true;
	initial-value: black;
	syntax: "<color>";
}
```

## Usage

Add [PostCSS Syntax Descriptor Syntax Production] to your project:

```bash
npm install postcss @csstools/postcss-syntax-descriptor-syntax-production --save-dev
```

Use it as a [PostCSS] plugin:

```js
const postcss = require('postcss');
const postcssSyntaxDescriptorSyntaxProduction = require('@csstools/postcss-syntax-descriptor-syntax-production');

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



## Options

### preserve

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

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

```css
@property --color {
	inherits: true;
	initial-value: black;
	syntax: <color>;
}

/* becomes */

@property --color {
	inherits: true;
	initial-value: black;
	syntax: "<color>";
	syntax: <color>;
}
```

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

[PostCSS]: https://github.com/postcss/postcss
[PostCSS Syntax Descriptor Syntax Production]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-syntax-descriptor-syntax-production
[CSS Specification]: https://github.com/w3c/csswg-drafts/issues/11426#issuecomment-3657538113

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