Consider the following example:
@sky-blue: #87ceeb;
@dark-sky-blue: @sky-blue + #333;
body {
background-color: @dark-sky-blue;
}
The above example gives you:
body {
background-color: #baffff;
}
Here it explains how to declare a variable and also make operations on a particular variable as well.