TechShotgun/sass/modules/_functions.scss

10 lines
178 B
SCSS
Raw Permalink Normal View History

// set color based on lightness of the color given.
@function set-color($c){
@if (lightness($c) > 50){
@return black;
}
@else{
@return white;
}
}