Created
September 12, 2011 01:34
-
-
Save ltackett/1210421 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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