I'm using dotless library for compile .less files in my asp.net web-site. And I want to get value of some variable by name.
For example, I have code like this:
@FONT_SIZE: 10px;
@TEXT_COLOR: red;
So, how can I get font size by "FONT_SIZE" name? I found FindVariable method in Env class, but I don't understand how to use it.