Last active
October 20, 2018 16:26
-
-
Save aamnah/4b523d78bcb5882765eec0f408a5c7a3 to your computer and use it in GitHub Desktop.
Font defaults for new projects
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
// see: https://gist.github.com/aamnah/52630097e3992906b0507fff5d9ac4ef | |
// for an explanation of font types and compatability | |
// woff and otf/ttf are supported by everything except IE 8-11 | |
@mixin font-smoothing { | |
// Font Smoothing | |
font-smooth: always; // Non-standard CSS | |
// https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth | |
-webkit-font-smoothing: antialiased; // Webkit, only works on macOS | |
-moz-osx-font-smoothing: grayscale; // Firefox, only works on macOS | |
} | |
// usage: | |
// body { | |
// @include font-smothing; | |
// } | |
$font-family-sans-serif: | |
// Chrome < 56 for OS X (San Francisco) | |
BlinkMacSystemFont, | |
// Safari for macOS and iOS (San Francisco), older Mac OS X (Helvetica Neue/Lucida Grande) | |
-apple-system, | |
// Windows | |
"Segoe UI", | |
// Android and Chrome OS | |
"Roboto", | |
// KDE | |
Oxygen-Sans, | |
// Ubuntu | |
Ubuntu, | |
// GNOME | |
Cantarell, | |
// Firefox OS | |
"Fira Sans", | |
// Android (Old) | |
"Droid Sans", | |
// Basic web fallback (Arial is universally available) | |
"Helvetica Neue", Arial, sans-serif, | |
// Emoji fonts | |
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default; | |
$font-family-code: | |
SFMono-Regular, // macOS, El Capitan + | |
Menlo, // Snow Leopard, replaced by SF Mono in El Capitan | |
Monaco, // OS X (primary till 2009 Snow Leopard) | |
Consolas, // Windows | |
Lucida Console, // Widnows | |
"Liberation Mono", // Linux | |
monospace; | |
// SERIF STACK | |
// https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide/ | |
// https://booking.design/implementing-system-fonts-on-booking-com-a-lesson-learned-bdc984df627f | |
// https://medium.design/system-shock-6b1dc6d6596f | |
// https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide/ | |
// MONOSPACE STACK | |
// https://www.client9.com/css-system-font-stack-monospace-v2/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment