学习?学个屁 06c63c15cc 初始化提交 10 miesięcy temu
..
.npmignore 06c63c15cc 初始化提交 10 miesięcy temu
CHANGELOG.md 06c63c15cc 初始化提交 10 miesięcy temu
LICENSE 06c63c15cc 初始化提交 10 miesięcy temu
README.md 06c63c15cc 初始化提交 10 miesięcy temu
index.json 06c63c15cc 初始化提交 10 miesięcy temu
package.json 06c63c15cc 初始化提交 10 miesięcy temu

README.md

css-font-weight-keywords

List of CSS font weights:

  • normal
  • bold
  • lighter
  • bolder
  • 100, 200, 300, 400, 500, 600, 700, 800, 900

Installation

npm install css-font-weight-keywords [--save[-dev]]

Usage

var fontWeightKeywords = require('css-font-weight-keywords');
fontWeightKeywords; /*
[
	"normal",
	"bold",
	"bolder",
	"lighter",
	"100",
	"200",
	"300",
	"400",
	"500",
	"600",
	"700",
	"800",
	"900"
]
*/