lessphp
lessphp copied to clipboard
Is possible to get the "final" value of variables after compilation?
Say you for example have these variables defined:
@color1: #0d0d0d;`
@color2: lighten(@color1, 15%);
@color3: @color2;
Is it possible to, after having called $less->cachedCompile (or one of the other compile methods), to get a list of all the variables that were defined and their final value?
I'd for example like to know what color @color3 actually ended up as.