H5-contact/node_modules/css-font-weight-keywords
whitechiina 753b079311 first commit 2026-08-20 15:54:28 +08:00
..
.npmignore first commit 2026-08-20 15:54:28 +08:00
CHANGELOG.md first commit 2026-08-20 15:54:28 +08:00
LICENSE first commit 2026-08-20 15:54:28 +08:00
README.md first commit 2026-08-20 15:54:28 +08:00
index.json first commit 2026-08-20 15:54:28 +08:00
package.json first commit 2026-08-20 15:54:28 +08:00

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"
]
*/