I want to compile a LESS file with parameters fetched from the database.
So something like this:
$color = "#433332";
And then in .less
@baseColor: $color;
Of course this is just pseudocode, so give you an idea what I want to do.
I am using Assetic, Symfony 2.1.8-DEV and the leafo/lessphp bundle.
I have no idea how I could achieve this. Is it even possible?