grav-theme-libretic/scss/nucleus/functions/_utilities.scss

7 lines
175 B
SCSS

@function textcolor-tint($color, $amount: 65%) {
@if (lightness($color) > 50) {
@return darken($color, $amount);
} @else {
@return lighten($color, $amount);
}
}