Created
May 5, 2021 09:53
-
-
Save fjahn/c07eb6939c927e2ce432586310b5e660 to your computer and use it in GitHub Desktop.
Readable Text Mixin
This file contains 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
/** | |
Ensures that text is readable on any background. | |
Stolen from https://stackoverflow.com/questions/23968961/css-how-can-i-make-a-font-readable-over-any-color#43135326 | |
*/ | |
@mixin readable-shadow($size, $color: white) { | |
text-shadow: | |
#{0.01 * $size}em 0 $color, | |
0 #{0.01 * $size}em $color, | |
#{-0.01 * $size}em 0 $color, | |
0 #{-0.01 * $size}em $color, | |
#{-0.01 * $size}em #{-0.01 * $size}em $color, | |
#{-0.01 * $size}em #{0.01 * $size}em $color, | |
#{0.01 * $size}em #{-0.01 * $size}em $color, | |
#{0.01 * $size}em #{0.01 * $size}em $color; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment