@csstools/postcss-random-function
Version:
Use the random function in CSS
122 lines (87 loc) • 2.96 kB
Markdown
`npm install @csstools/postcss-random-function --save-dev`
[] lets you use the `random` function, following the [CSS Values 5] specification.
```css
div {
color: oklch(0.7 0.2 random(120deg, 240deg));
}
div {
color: oklch(0.7 0.2 random(120deg, 240deg, 7deg));
}
div {
margin: random(10px, 100px) random(10px, 100px);
padding: random(--padding, 10px, 100px) random(--padding, 10px, 100px);
}
/* becomes */
div {
color: oklch(0.7 0.2 166.80407deg);
}
div {
color: oklch(0.7 0.2 169deg);
}
div {
margin: 45.10305px 45.10305px;
padding: 73.36206px 73.36206px;
}
```
> [!NOTE]
> Generated values are deterministic pseudo random numbers.
> Generating values twice with the same input will give the same result.
> The input length of the CSS source file is used as a random seed.
Add [PostCSS Random Function] to your project:
```bash
npm install postcss @csstools/postcss-random-function --save-dev
```
Use it as a [PostCSS] plugin:
```js
const postcss = require('postcss');
const postcssRandomFunction = require('@csstools/postcss-random-function');
postcss([
postcssRandomFunction(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
```
Given the dynamic nature of custom properties it's impossible to know what the variable value is, which means the plugin can't compute a final value for the stylesheet.
Because of that, any usage that contains a `var` is skipped.
The `preserve` option determines whether the original notation
is preserved. By default, it is not preserved.
```js
postcssRandomFunction({ preserve: true })
```
```css
div {
color: oklch(0.7 0.2 random(120deg, 240deg));
}
div {
color: oklch(0.7 0.2 random(120deg, 240deg, 7deg));
}
div {
margin: random(10px, 100px) random(10px, 100px);
padding: random(--padding, 10px, 100px) random(--padding, 10px, 100px);
}
/* becomes */
div {
color: oklch(0.7 0.2 166.80407deg);
color: oklch(0.7 0.2 random(120deg, 240deg));
}
div {
color: oklch(0.7 0.2 169deg);
color: oklch(0.7 0.2 random(120deg, 240deg, 7deg));
}
div {
margin: 45.10305px 45.10305px;
margin: random(10px, 100px) random(10px, 100px);
padding: 73.36206px 73.36206px;
padding: random(--padding, 10px, 100px) random(--padding, 10px, 100px);
}
```
[]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test
[]: https://cssdb.org/#random-function
[]: https://discord.gg/bUadyRwkJS
[]: https://www.npmjs.com/package/@csstools/postcss-random-function
[]: https://github.com/postcss/postcss
[]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-random-function
[]: https://drafts.csswg.org/css-values-5/#random