Created
April 19, 2020 00:36
-
-
Save awayken/376a72ce36b24bad8212dbb095829936 to your computer and use it in GitHub Desktop.
System Font Stacks
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
/* Stolen from: https://alligator.io/css/system-font-stack/#monospace-system-font-stack */ | |
code, kbd { | |
font-family: | |
/* macOS, iOS */ | |
SFMono-Regular, | |
Menlo, | |
Monaco, | |
/* Windows */ | |
Consolas, | |
/* Android */ | |
"Roboto Mono", | |
/* Linux */ | |
"Liberation Mono", | |
/* OS fallback */ | |
"Courier New", | |
/* Browser fallback */ | |
monospace; | |
} | |
code, kbd { | |
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono", "Liberation Mono", "Courier New", monospace; | |
} |
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
/* Stolen from: https://alligator.io/css/system-font-stack/#sans-serif-system-font-stack */ | |
body { | |
font-family: | |
/* General */ | |
system-ui, | |
/* macOS, iOS */ | |
-apple-system, | |
BlinkMacSystemFont, | |
/* Windows */ | |
"Segoe UI", | |
/* Android */ | |
Roboto, | |
/* KDE Linux */ | |
Oxygen-Sans, | |
/* Ubuntu Linux */ | |
Ubuntu, | |
/* Gnome Linux */ | |
Cantarell, | |
/* OS fallback */ | |
"Helvetica Neue", | |
/* Browser fallback */ | |
sans-serif; | |
} | |
body { | |
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | |
} |
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
body { | |
font-family: | |
/* macOS */ | |
Baskerville, | |
/* Windows */ | |
Cambria, | |
/* Android */ | |
"Roboto Slab", | |
/* Linux */ | |
"Linux Libertine", | |
/* OS fallback */ | |
Georgia, | |
"Times New Roman", | |
Times, | |
/* Browser fallback */ | |
serif; | |
} | |
body { | |
font-family: Baskerville, Cambria, "Roboto Slab", "Linux Libertine", Georgia, "Times New Roman", Times, serif; | |
} | |
/* Miles.ink font stack */ | |
body { | |
font-family: Baskerville, "Baskerville Old Face", "Hoefler Text", Garamond, "Times New Roman", serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment