Using LESS, I know that I can change the saturation or tint of a color variable. That looks like this:
background: lighten(@blue, 20%);
I want
The site documentation gives the answer:
background: fade(@blue, 20%);
The function name is fade not alpha according to that document.
fade
alpha