nordicmaterial2
7/29/2015 - 1:40 PM

Manipulate colors with sass

Manipulate colors with sass

// (darken, saturate, desaturate, complement, invert…)

//  http://jackiebalzer.com/color

.mylighterbox { 
    background-color: lighten($mycolor, 20%); 
}

.mygreyerbox {
    background-color: desaturate($mycolor, 20%);
}