grass icon indicating copy to clipboard operation
grass copied to clipboard

Support relative color expressions

Open doup opened this issue 10 months ago • 0 comments

It looks like relative colors are not supported. I'm getting the following error in a Zola project when using them:

Error: Error: Only 3 elements allowed, but 5 were passed.
    ╷
151 │     color: hsl(from var(--search-category-bg-color) h s 90);
    │            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ╵

These should be ignored as sass-lang.com does. For anyone looking for a workaround, unquote can be used to appease the compiler:

color: unquote("hsl(from var(--search-category-bg-color) h s 90)");

Thanks!

doup avatar Feb 27 '25 19:02 doup