Last active
December 18, 2015 01:49
-
-
Save stormwarning/5706762 to your computer and use it in GitHub Desktop.
Attempting to map common typographic weight terminology to CSS/TrueType/OpenType values;
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
$hairline: 100; | |
$thin: 200; // aka Extra light, Ultra light | |
$light: 300; | |
$normal: 400; // aka Book, Roman | |
$medium: 500; | |
$semibold: 600; // aka Demi-bold | |
$bold: 700; | |
$extrabold: 800; // aka Ultra bold | |
$black: 900; // aka Heavy | |
strong { | |
font-weight: $medium; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
May need to look into ways to mixin-ify this, incorporating font-face (see: http://elliotjaystocks.com/blog/font-weight-in-the-age-of-web-fonts/)