@csstools/postcss-relative-color-syntax
Version:
Use the relative color syntax in CSS
75 lines (51 loc) • 2.01 kB
Markdown
`npm install @csstools/postcss-relative-color-syntax --save-dev`
[] lets you use the relative color syntax in CSS color functions following [CSS Color Module 5].
```css
.example {
background: oklab(from oklab(54.3% -22.5% -5%) calc(1.0 - l) calc(a * 0.8) b);
}
/* becomes */
.example {
background: rgb(12, 100, 100);
}
```
> [!NOTE]
> We can not dynamically resolve `var()` arguments in relative color syntax, only static values will work.
Add [PostCSS Relative Color Syntax] to your project:
```bash
npm install postcss @csstools/postcss-relative-color-syntax --save-dev
```
Use it as a [PostCSS] plugin:
```js
const postcss = require('postcss');
const postcssRelativeColorSyntax = require('@csstools/postcss-relative-color-syntax');
postcss([
postcssRelativeColorSyntax(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
```
The `preserve` option determines whether the original notation
is preserved. By default, it is not preserved.
```js
postcssRelativeColorSyntax({ preserve: true })
```
```css
.example {
background: oklab(from oklab(54.3% -22.5% -5%) calc(1.0 - l) calc(a * 0.8) b);
}
/* becomes */
.example {
background: rgb(12, 100, 100);
background: oklab(from oklab(54.3% -22.5% -5%) calc(1.0 - l) calc(a * 0.8) b);
}
```
[]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test
[]: https://cssdb.org/#relative-color-syntax
[]: https://discord.gg/bUadyRwkJS
[]: https://www.npmjs.com/package/@csstools/postcss-relative-color-syntax
[]: https://github.com/postcss/postcss
[]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-relative-color-syntax
[]: https://www.w3.org/TR/css-color-5/#relative-colors