Public Theta Blog

フォントのウェイト名と数値の対応表

数値名前
100Thin
200Extra Light (Ultra Light)
300Light
400Normal
500Medium
600Semi Bold (Demi Bold)
700Bold
800Extra Bold (Ultra Bold)
900Black (Heavy)
.font-weight {
    font-weight: 100; /* thin */
    font-weight: 200; /* extra light */
    font-weight: 300; /* light */
    font-weight: 400; /* normal */
    font-weight: 500; /* medium */
    font-weight: 600; /* semi bold */
    font-weight: 700; /* bold */
    font-weight: 800; /* extra bold */
    font-weight: 900; /* black */
}

参考