I'm making a migration from LESS to CSS3 of an internal React component library.
I have, for example, the following and I can't find a way to do the same in CSS. I found no way to replace the lighten function.
I thought about logging the lightened color and to store it in a variable, but it seems to me that it is not clean!
box-shadow: 0 0 var(--button-small-shadow-width) lighten(var(--colors-primary-blue), var(--button-lighten-percentage));
Thanks for your help.