Skip to content

Latest commit

 

History

History

04-color-fns

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

SCSS DOC

$lighten_base: lighten($base, 25%);
$darken_base: darken($base, 25%);

$clb: complement($base);
$cllb: complement($lighten_base);
$cldb: complement($darken_base);

$light-color: scale_color($base, $alpha: -50%);
$dark-color: scale_color($base, $saturation: -35%);

background-image:linear-gradient($clb, $cllb, $cldb);