To enable themes you must install Less CSS via nodejs.

On Linux, use your distribution’s package manager to install nodejs and npm.

Warning
In debian wheezy and Ubuntu 13.10 and before you need to install nodejs manually:

2 Lines
$ wget -qO- https://deb.nodesource.com/setup | bash -
$ apt-get install -y nodejs
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

In later debian (>jessie) and ubuntu (>14.04) you may need to add a symlink as npm packages call node but debian calls the binary nodejs

2 Lines
$ apt-get install -y npm
$ sudo ln -s /usr/bin/nodejs /usr/bin/node
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Once npm is installed, use it to install less and less-plugin-clean-css:

1 Lines
$ sudo npm install -g less less-plugin-clean-css
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

on OS X, install nodejs via your preferred package manager (homebrew, macports) then install less and less-plugin-clean-css:

1 Lines
$ sudo npm install -g less less-plugin-clean-css
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

on Windows, install nodejs, reboot (to update the PATH) and install less and less-plugin-clean-css:

1 Lines
C:\> npm install -g less less-plugin-clean-css
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Warning
You can have problems with NodeJS and NPM packages in the Ubuntu 14.04 repository because they are outdated.

Follow the instructions from the NodeJS Website:

3 Lines
curl -sL https://deb.nodesource.com/setup_0.10 | sudo bash -
sudo apt-get install -y nodejs
sudo npm install -g npm (to update npm)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Then install Less and accessories:

1 Lines
sudo npm install -g less less-plugin-clean-css
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Subscribe To Our Newsletter

Subscribe To Our Newsletter

Join our mailing list to receive the latest news and updates from our team.

You have Successfully Subscribed!