Skip to content

Commit

Permalink
feat: create new fw tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
tcK1 committed Jan 19, 2024
1 parent 566f23a commit db6ae26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/tokens/src/global/font-weights.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ export const weights = {
medium: 500,
bold: 700,
black: 900,
regularNew: 500,
mediumNew: 700,
boldNew: 800,
} as const;

const fontWeights = {...weights, ...Object.values(weights)};
const fontWeights = { ...weights, ...Object.values(weights) };

export type FontWeights = Partial<typeof fontWeights>;

Expand Down
Binary file added packages/yoga/src/Fonts/Inter-800.ttf
Binary file not shown.

0 comments on commit db6ae26

Please sign in to comment.