I'm getting a syntax error when attempting to reference a variable from a namespace in LESS:
#testns {
@my_color: #04ffff;
.me() {
color: blue;
}
}
.fun {
color: #testns[@my_color];
}
The mixin works fine if I do the following:
.fun {
#testns > .me();
}
But I'm not able to reference the variable from the namespace for some reason. I'm building these in Java using the asual library, and everything else is working perfectly.