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.
- Host: GitHub
- URL: https://github.com/benjaminbwright/less-lifting
- Owner: benjaminbwright
- License: mit
- Created: 2014-04-23T02:52:36.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-04-29T15:52:14.000Z (about 11 years ago)
- Last Synced: 2023-09-04T05:36:57.943Z (almost 3 years ago)
- Language: CSS
- Size: 383 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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