Skip to content

Instantly share code, notes, and snippets.

@ltackett
Created September 12, 2011 01:34
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ltackett/1210421 to your computer and use it in GitHub Desktop.
Save ltackett/1210421 to your computer and use it in GitHub Desktop.
@mixin inset-text($color, $amount: 0.7) {
color: $color;
@if lightness($color) < 50% { @include single-text-shadow(rgba(white, $amount), 1px, 1px, 1px); }
@else { @include single-text-shadow(rgba(black, $amount), -1px, -1px, 1px); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment