Re: [csswg-drafts] [filters] Proposal: color-filter

(a bit off topic) maybe alongside a feature like this, css could introduce an alternative syntax to chain/nest "function" calls

```
background-color: saturation(hue(brightness(red, 1.2), 12deg) 0.3); /* current */

background-color: red -> brightness(1.2) -> hue(+12deg) -> saturation(+0.3); /* oop */
background-color: brightness(red, 1.2) |> hue(_, +12deg) |> saturation(_, +0.3); /* pipe */
```

-- 
GitHub Notification of comment by Netmosfera
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2875#issuecomment-402349178 using your GitHub account

Received on Wednesday, 4 July 2018 02:59:55 UTC