Skip to content

Instantly share code, notes, and snippets.

@allusis
Last active December 17, 2015 06:09
Show Gist options
  • Save allusis/671f6df3c134ab5e0cbd to your computer and use it in GitHub Desktop.
Save allusis/671f6df3c134ab5e0cbd to your computer and use it in GitHub Desktop.
A Sass function for determine contrasting colors
$text-color: #555;
@function contrast-color($color) {
@if (lightness($color) > 75) {
// Lighter background, return dark color
@return $text-color;
} @else {
// Darker background, return light color
@return white;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment