Skip to content

Commit

Permalink
[docs] Fix code font family regression
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Nov 7, 2022
1 parent 844ecf3 commit 321ce89
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/src/modules/brandingTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,11 @@ export const getDesignTokens = (mode: 'light' | 'dark') =>
spacing: 10,
typography: {
fontFamily: ['"IBM Plex Sans"', ...systemFont].join(','),
fontFamilyCode: ['Menlo', 'Monaco', 'Consolas', 'monospace'].join(','),
fontFamilyCode: [
'Menlo', // macOS
'Lucida Console', // Windows
'monospace', // fallback
].join(','),
fontFamilyTagline: ['"PlusJakartaSans-ExtraBold"', ...systemFont].join(','),
fontFamilySystem: systemFont.join(','),
fontWeightSemiBold: 600,
Expand Down

0 comments on commit 321ce89

Please sign in to comment.