From: Ajay Bura <32841439+ajbura@users.noreply.github.com> Date: Sun, 22 Sep 2024 12:31:32 +0000 (+1000) Subject: fix font-weight in dark theme with unsupported fonts (#1964) X-Git-Tag: v4.2.2~7 X-Git-Url: https://git.wafflesoft.org/?a=commitdiff_plain;h=5824d7c71614b7287fc80925beed37fc4f75b530;p=rainny.git fix font-weight in dark theme with unsupported fonts (#1964) --- diff --git a/src/config.css.ts b/src/config.css.ts index df04b90..5d63c34 100644 --- a/src/config.css.ts +++ b/src/config.css.ts @@ -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', @@ -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', });