An open API service indexing awesome lists of open source software.

https://github.com/benjaminbwright/less-lifting

A simple lightweight LESS framework.
https://github.com/benjaminbwright/less-lifting

Last synced: about 1 year ago
JSON representation

A simple lightweight LESS framework.

Awesome Lists containing this project

README

          

less-lifting v0.2.0
============

A simple lightweight LESS framework.

Why?
====

This LESS framework is intended to be a simpler collection of LESS tools to speed up front-end development. The aim is to keep the code as simple as possible while taking advantage of the power of CSS pre-processing.

Tools
===============

# Color Palette Mixins

## Introduction

Color palette mixins may be used to auto-generate entire palettes for your web project based upon a base color. Palettes include:

- Shades Palette
- Analagous Palette
- Complementary Palette
- Split Complementary Palette
- Clash Palette
- Triadic Palette
- Tetradic Palette
- Five Tone Palette
- Six Tone Palette

**Shades Palette**

_Usage:_

.shades-palette(@base-color);

_Colors Generated:_

@shade1
@shade2
@shade3
@shade4
@shade5

**Analagous Palette**

_Usage:_

_Colors Generated:_

@analagous1
@analagous2
@analagous3
@analagous4
@analagous5

**Complementary Palette**

_Usage:_

_Colors Generated:_

@complementary1
@complementary2

**Split Complementary Palette**

_Usage:_

_Colors Generated:_

@split-complementary1
@split-complementary2
@split-complementary3

**Clash Palette**

_Usage:_

_Colors Generated:_

@clash1
@clash2
@clash3

**Triadic Palette**

_Usage:_

_Colors Generated:_

@triad1
@triad2
@triad3

**Tetradic Palette**

_Usage:_

_Colors Generated:_

@tetrad1
@tetrad2
@tetrad3
@tetrad4

**Five Tone Palette**

_Usage:_

_Colors Generated:_

@five-tone1
@five-tone2
@five-tone3
@five-tone4
@five-tone5

**Six Tone Palette**

_Usage:_

_Colors Generated:_

@six-tone1
@six-tone2
@six-tone3
@six-tone4
@six-tone5
@six-tone6