one of the simplest work around would be to pass the property and the value.
mixin.less
.lighter(@property, @color) {
@{property}: multiply(white, fade(@color, 10%));
}
use.less
.my-class{
.lighter(background-color, #FF0000);
}
Results:
.my-class{
background-color: #fbe8eb;
}