Skip to content

Instantly share code, notes, and snippets.

@austinpray
Created October 15, 2013 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save austinpray/6992952 to your computer and use it in GitHub Desktop.
Save austinpray/6992952 to your computer and use it in GitHub Desktop.
Dynamically change text color based on its background with Sass via http://codepen.io/sebastianekstrom/pen/uHAtL
@function set-text-color($color) {
@if (lightness( $color ) > 40) {
@return black;
}
@else {
@return white;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment