TwFontWeight
Enum to determine font weight.
enum TwFontWeight {
/** 100 */
Thin = 'font-thin',
/** 200 */
Extralight = 'font-extralight',
/** 300 */
Light = 'font-light',
/** 400 */
Normal = 'font-normal',
/** 500 */
Medium = 'font-medium',
/** 600 */
Semibold = 'font-semibold',
/** 700 */
Bold = 'font-bold',
/** 800 */
Extrabold = 'font-extrabold',
/** 900 */
Black = 'font-black',
}Example
font-thin
The quick brown fox jumps over the lazy dog.
font-extralight
The quick brown fox jumps over the lazy dog.
font-light
The quick brown fox jumps over the lazy dog.
font-normal
The quick brown fox jumps over the lazy dog.
font-medium
The quick brown fox jumps over the lazy dog.
font-semibold
The quick brown fox jumps over the lazy dog.
font-bold
The quick brown fox jumps over the lazy dog.
font-extrabold
The quick brown fox jumps over the lazy dog.
font-black
The quick brown fox jumps over the lazy dog.