My less file is dependent on many variables such as:
@fontRegular: "AvenirNextCondensed-Regular";
And classes make use of those variables, as follows:
.thisClass {
font-family: @fontRegular;
}
As you can expect, I need to retheme on-the-fly.
The theme itself redefines those variable, as follows):
@fontRegular: "HelveticaNeue";
How can I require less to reparse everything (I mean my less file) and how can I change the variables first?