Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Created October 1, 2015 19:14
Show Gist options
  • Save pixelchar/ca09726e52cbac759215 to your computer and use it in GitHub Desktop.
Save pixelchar/ca09726e52cbac759215 to your computer and use it in GitHub Desktop.
@function color-interpolate($c1, $c2, $percent) {
@return $c1 * $percent + $c2 * (1 - $percent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment