How can I use a less.js function within JavaScript?
I want to use the mix function, found here, within normal JavaScript, so:
$('.orange-text').css({
color: less.mix('#FF6B3A','#6600CC','50%')
});
But it is just always undefined, and I cannot seem to find any documentation on how to reference the function but surely its possible?
50%would mean half way between the two colors?