Book Image

LESS WEB DEVELOPMENT COOKBOOK

Book Image

LESS WEB DEVELOPMENT COOKBOOK

Overview of this book

Table of Contents (19 chapters)
Less Web Development Cookbook
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Making custom color schemes with 1pxdeep


In the first recipe of this chapter, you read how to change the look and feel of your Bootstrap theme. Choosing the right color scheme for your project is not easy. The 1pxdeep project will help you to choose the right color scheme for your project.

Getting ready

For this recipe, you will have to download the Bootstrap source files. You should also download the 1pxdeep files, which can be found at https://github.com/rriepe/1pxdeep. You can edit the source files with a text editor. The Less code in the recipe will be compiled with the Grunt build tool delivered with Bootstrap. Alternatively, you could also compile the Less code with the command-line lessc or client-side less.js compilers, as discussed in Chapter 1, Getting to Grips with the Basic of Less.

How to do it...

Perform the following steps:

  1. Visit the 1pxdeep website at https://github.com/rriepe/1pxdeep.

  2. Then, choose Seed color; in this recipe, the #b97ec2 color will be used.

  3. Download the 1pxdeep...