biome_css_formatter 0.5.7

Biome's CSS formatter
Documentation
---
source: crates/biome_formatter_test/src/snapshot_builder.rs
info: css/functions.css
---

# Input

```css
div {
    color: rgba(255, 255, 255, 1);
    color:   rgba   (
        0,
        1,
        255,
        1
    );
    color: arbitrary(really long list, of complex parameter values, each one on its own line);
    color: more-arbitrary(just, has, lots, of, individual, parameters, breaking, over, lines);
    color: arbitrary(one really long parameter value that itself will break over multiple lines and fill together);
}
```


=============================

# Outputs

## Output 1

-----
Indent style: Tab
Indent width: 2
Line ending: LF
Line width: 80
Quote style: Double Quotes
-----

```css
div {
	color: rgba(255, 255, 255, 1);
	color: rgba(0, 1, 255, 1);
	color: arbitrary(
			really long list,
			of complex parameter values,
			each one on its own line
		);
	color: more-arbitrary(
			just,
			has,
			lots,
			of,
			individual,
			parameters,
			breaking,
			over,
			lines
		);
	color: arbitrary(
			one really long parameter value that itself will break over multiple lines
				and fill together
		);
}
```