Skip to content

Commit

Permalink
fix default fontFamily
Browse files Browse the repository at this point in the history
  • Loading branch information
veej committed May 24, 2024
1 parent 0bc27e7 commit 43b3ffa
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions packages/bento-design-system/src/util/defaultTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,15 @@ const colors = {
pink50: "#C20B76",
};

const displayFontFamily = "Lexend, Arial, sans-serif";
const groteskFontFamily = "Lexend, Arial, sans-serif";
const fontFamily = "Lexend, Arial, sans-serif";

export const defaultTokens: BentoTokens = {
fontFamily: {
display: displayFontFamily,
headline: displayFontFamily,
title: displayFontFamily,
body: groteskFontFamily,
label: groteskFontFamily,
display: fontFamily,
headline: fontFamily,
title: fontFamily,
body: fontFamily,
label: fontFamily,
},
fontWeight: {
displaySmall: "600",
Expand Down

0 comments on commit 43b3ffa

Please sign in to comment.