Throughout many of our demos, we've concentrated on using plugins, with minimal changes required to configure the code for use. There is nothing wrong with this, but as always, we can do better. How about installing support for highlighting?
This is an easy way to make it easier to read our code, indeed, we should have installed something like this a long time ago! That aside, it's easy enough to fix; support is available for a wide variety of editors. For the purposes of this chapter, I will assume you are using Sublime Text; this is an example of how it might look (the screenshot shows the Twilight Light theme in use):

Let's dive in and take a look at how to get this set up, using Sublime Text's package manager.
Adding theme support is a cinch when using an editor such as Sublime Text. Let's work through the steps:
cd %APPDATA%\Sublime Text 3\Packages\User
git clone git://github.com/chriskempson/base16-textmate.git Base16

An easy change to make, but a useful one; nevertheless, it's only part of what we can do! To really go to town (figuratively speaking), we can apply similar styling to our CSS styles. This makes it easier to read if we want to document our styles online. After all, color is clearly easier to read than black and white! Let's take a moment to explore what is required to apply a color theme to our documented code.
A part of developing code is the need to document it. This is not only for our sanity, but also for future changes, should someone else need to alter our code! Creating printed documentation is now old hat, a better method is to create it online, where we can easily update it without too much fuss. At the same time, we can add some color to it, to make it visually more appealing and provide a more consistent format to our efforts.
We could create this code manually, but that is a resource-heavy process that is prone to error! Instead, we can use the Midas library (available from http://midasjs.com) to automate the creation of the basis for our documentation, and we can style it using one of the base16 themes we covered in the previous exercise.
Let's make a start on installing that support:
npm install midas --save-dev
src folder and the gulpfile.js and package.json files from the T63 – incorporating midas folder, then save them to the root of our project area.gulp and press Enter.styles.html, which has been properly formatted with extra markup. The file will appear in the dest folder within our project area.At this point, if we were to view the contents of that file, it will look very plain; this is easy to fix! To do this, we will use the Brewer theme by Timothée Poisot, available from https://github.com/chriskempson/base16-builder/blob/master/schemes/brewer.yml; there are a few steps involved to make this happen:
dest folder of our project area.

styles.html file to reference the new style sheet, so that it has the proper HTML structure. Once done, it will look something like this:
This looks far more appealing, I think you'll agree! Although it requires some work to create the initial theme, this will be a one-off process for each theme that you create. Any changes made to the CSS rules or declarations can be generated automatically, and the HTML result updates accordingly.