Is it possible to overwrite an existing varibale via a sent parameter?
Example: My CSS
/* ... */
@bg_color: purple;
@h_color: lighten(@bg_color,25);
#header { background: @bg_color; }
/* ... */
Now when I call:
$less->parse(array('bg_color' => 'blue'));
it has no effect. The variable will not be overwritten. The idea is to use the variable in the CSS as a "Fallback-Color"
Any ideas how I can force less.php to overwrite existing variables?