Closed
Description
Not much to say, I just think it would be a good idea if in LESS you could do the following :
.blue { color: blue }
.red { color: red }
.color(@color) {
.@{color}
}
div {
.color(red)
}
Resulting in
div { color: red }
.@{variable} is a proposition of syntax but .@variable, .{variable} or .{@variable} would maybe fit better the LESS syntax, I don't know.