I would like that a visitor on my site could change values of some LESS variables that I defined in my LESS stylesheets.
For example if I declared the following rule:
@color-of-text: blue;
body
{
color:@color-of-text;
}
Obviously, website has blue text. But I would like that a user could select (is not important in which way... a dropdown, or checkbox or whatever) a different value, changing for example @color-of-text from 'blue' to 'red', like I wrote "@color-of-text: red;" directly in my less file.
Obviously this change should happens on the fly, withour reloading the page.
How to obtain this?