Mobile app version of vmapp.org
Login or Join
Gonzalez368

: How to practically interpret a specified font weight? Designers have provided us with the specification that a font should be rendered with weight 75 Bold. The software I am using (CSS, WPF)

@Gonzalez368

Posted in: #Terminology #Typography

Designers have provided us with the specification that a font should be rendered with weight 75 Bold.

The software I am using (CSS, WPF) expects font weights in the range of roughly 100 and 900. How do I have to interpret the 75 in practice?

From one question, I figure that the 100 to 900 range is from what is called Linotype system, or TrueType dimensions, as they are called elsewhere. Also, again the aforementioned question indicates the one digit numbers seem to be from the so-called Panose system.

Is it legitimate to simply assume the range from 100–900 proportionally matches the range from 2–9, as is implied in a question? I am also wondering about this as, for instance, the WPF values slightly exceed that range by using value 950 (not that this would be a problem if I assume a linear relationship).

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Gonzalez368

2 Comments

Sorted by latest first Latest Oldest Best

 

@Alves566

Adrian Frutiger seems to have been the one who started that numbering system with his Univers family.

In his system, 65 is Bold. Bold seems to map to 700 in the other system.

75 is Black, so that would be somewhere in 800 to 900.

(Just for reference: Frutiger's system uses the first digit for weight and the second for width and italicising (odd is upright, even is oblique). So...

55 is the middle: regular/book weight, neither condensed nor wide.

56 is 55's italic

63 is Bold Wide

65 is Bold Normal/Regular

67 is Bold Condensed

43 is Light Wide

45 is Light Normal

47 is Light Condensed

59 is regular/book weight, XCondensed

93 is XBlack Wide

et cetera)

10% popularity Vote Up Vote Down


 

@Nimeshi706

Font weight numbers don't mean much except in regards to that specific font, there is no universal standard and the numbers are used as a naming convention to differenciate the weights within a typeface—75 bold in one font will not neccesarily be the same weight visually as 75 bold in another.

Helvetica Neue, as many other fonts, has specific numbered weights (which you can see for example on MyFonts). You can see the specific weight Helvetica Neue 75 Bold:



If you're using a version of Helvetica Neue that doesn't have a number in the name (as the version installed with your OS probably is) then I'm almost certain that the "Bold" version will be the same weight—compare with another version if you're unsure or ask the designer who specified the font to you.

In CSS the "Bold" font-weight is generally set as font-weight: 700; but this depends on how you are loading your fonts. When you include a font with @font -face for example, you can set the corresponding font-weight to anything you like, all that matters is that you're loading the correct font file and the numbers between your declaration and use match.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme