Is it possible to override existing variables from the LESSPHP compiler e.g.
$less = new lessc;
$less->setVariables(array(
"color" => "red",
"base" => "960px"
));
echo $less->compileFile('source.less','destination.css');
where source.less
already has the @color
and @base
variables present. If not is there another approach i can do to achieve this?