Skip to content

Commit

Permalink
docs(fonts): add MDN reference for font weights in fonts.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
developerjhp committed Jan 10, 2025
1 parent 65d679a commit 506c2a7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/tokens/src/fonts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ export const fontSize = {
48: 48,
} as const;

/**
* Font weights following MDN guidelines
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight
*/
export const fontWeight = {
regular: 400,
medium: 500,
Expand Down

0 comments on commit 506c2a7

Please sign in to comment.