Skip to content

Instantly share code, notes, and snippets.

@darrensq
Last active April 1, 2020 18:08
Show Gist options
  • Save darrensq/0015f5bfb83a7b9e13abcac9f9c96074 to your computer and use it in GitHub Desktop.
Save darrensq/0015f5bfb83a7b9e13abcac9f9c96074 to your computer and use it in GitHub Desktop.
Sass Adaptive Color Helper #css #sass
@function adaptive-color($color, $percentage) {
@if (lightness($color) > 40) {
@return darken($color, $percentage);
} @else {
@return lighten($color, $percentage);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment