Created
May 30, 2014 15:43
-
-
Save eternal-turtles/b5366b76cd329c085cef to your computer and use it in GitHub Desktop.
font stacks for LESS
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
| /* ====================================================================== | |
| FONTS= | |
| KERN= | |
| ========================================================================= */ | |
| // ( http://www.awayback.com/revised-font-stack/ ) | |
| // SANS-SERIF= | |
| @optima: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif; | |
| @kern-optima: -0.015em; | |
| @futura: Futura, "Trebuchet MS", Arial, sans-serif; | |
| @kern-futura: -0.035em; | |
| @gill-sans: "Gill Sans", "Gill Sans MT", Calibri, sans-serif; | |
| @kern-gill-sans: 0; | |
| @trebuchet: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif; | |
| @kern-trebuchet: -0.025em; | |
| @helvetica: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| @kern-helvetica: -0.015em; | |
| @verdana: Verdana, Geneva, sans-serif; | |
| @kern-verdana: -0.045em; | |
| @lucida-grande:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif; | |
| @kern-lucida-grande: -0.045em; | |
| @geneva: Geneva, Tahoma, Verdana, sans-serif; | |
| @segoe: Segoe, "Segoe UI", "Helvetica Neue", Arial, sans-serif; | |
| @kern-segoe: 0.015em; | |
| @candara: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif; | |
| @kern-candara: -0.025em; | |
| @calibri: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif; | |
| @kern-calibri: -0.025em; | |
| @franklin: "Franklin Gothic Medium", Arial, sans-serif; | |
| @kern-franklin: -0.025em; | |
| @tahoma: Tahoma, Geneva, Verdana, sans-serif; | |
| @kern-tahoma: 0; | |
| //SERIF= | |
| @garamond: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif; | |
| @kern-garamond: -0.015em; | |
| @lucida-bright: "Lucida Bright", Georgia, serif; | |
| @kern-lucida_bright: -0.015em; | |
| @palatino: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif; | |
| @kern-palatino: -0.015em; | |
| @caslon: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif; | |
| @kern-caslon: 0.025em; | |
| @didot: Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif; | |
| @kern-didot: -0.035em; | |
| @baskerville: Baskerville, "Baskerville old face", "Hoefler Text", Garamond, "Times New Roman", serif; | |
| @kern-baskerville: -0.025em; | |
| @hoefler: "Hoefler Text", "Baskerville old face", Garamond, "Times New Roman", serif; | |
| @kern-hoefler: -0.025em; | |
| @bodoni: "Bodoni MT", Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif; | |
| @kern-bodoni: -0.025em; | |
| @goudy: "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", serif; | |
| @kern-goudy: 0.025em; | |
| @constantia: Constantia, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif; | |
| @kern-constantia: -0.025em; | |
| @cambria: Cambria, Georgia, serif; | |
| @kern-cambria: 0; | |
| @antiqua: "Book Antiqua", Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif; | |
| @kern-antiqua: -0.015em; | |
| //selected google fonts: ( https://github.com/ubuwaits/beautiful-web-type ) + some others | |
| // note: need to @import fonts over Google Fonts CDN or use @font-family for fonts stored locally. | |
| @abril-fatface: "Abril Fatface", cursive; | |
| @cardo: "Cardo", serif; | |
| @gentium-book-basic: "Gentium Book Basic", serif; | |
| @gravitas-one: "Gravitas One", cursive; | |
| @merriweather: "Merriweather", serif; | |
| @old-standard-tt: "Old Standard TT", serif; | |
| @open-sans: "Open Sans", sans-serif; | |
| @oswald:"Oswald", sans-serif; | |
| @playfair-display: "Playfair Display", serif; | |
| @pt-mono: "PT Mono", serif; | |
| @pt-sans: "PT Sans", sans-serif; | |
| @pt-sans-narrow: "PT Sans Narrow", sans-serif; | |
| @pt-serif: "PT Serif", serif; | |
| @racing-sans-one: "Racing Sans One", cursive; | |
| @reenie-beanie: "Reenie Beanie", cursive; | |
| @vollkorn: "Vollkorn", serif; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment