Skip to content

Commit

Permalink
fix font-weight in dark theme with unsupported fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
ajbura committed Sep 20, 2024
1 parent 21164a9 commit 6d465ce
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/config.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const onLightFontWeight = createTheme(config.fontWeight, {
W100: '100',
W200: '200',
W300: '300',
W400: '420',
W400: '400',
W500: '500',
W600: '600',
W700: '700',
Expand All @@ -17,10 +17,10 @@ export const onDarkFontWeight = createTheme(config.fontWeight, {
W100: '100',
W200: '200',
W300: '300',
W400: '350',
W500: '450',
W600: '550',
W700: '650',
W800: '750',
W900: '850',
W400: '400',
W500: '500',
W600: '600',
W700: '700',
W800: '800',
W900: '900',
});

0 comments on commit 6d465ce

Please sign in to comment.