Created
July 18, 2014 19:45
-
-
Save drocarmo/b442959973c6ba7afd76 to your computer and use it in GitHub Desktop.
font rendering in OSX
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
// Mixin | |
@mixin font-smoothing($value: on) { | |
@if $value == on { | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
@else { | |
-webkit-font-smoothing: subpixel-antialiased; | |
-moz-osx-font-smoothing: auto; | |
} | |
} | |
// Usage | |
.dark-on-light { | |
@include font-smoothing(off); | |
} | |
.light-on-dark { | |
@include font-smoothing(on); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment