diff --git a/lib/widgets/content.dart b/lib/widgets/content.dart index 108b70177a..2958e5069d 100644 --- a/lib/widgets/content.dart +++ b/lib/widgets/content.dart @@ -47,8 +47,8 @@ class ContentTheme extends ThemeExtension { ) .merge(weightVariableTextStyle(context)) .copyWith(debugLabel: 'ContentTheme.textStylePlainParagraph'), - textStyleError = const TextStyle( - fontSize: kBaseFontSize, fontWeight: FontWeight.bold, color: Colors.red); + textStyleError = const TextStyle(fontSize: kBaseFontSize, color: Colors.red) + .merge(weightVariableTextStyle(context, wght: 700)); ContentTheme._({ required this.textStylePlainParagraph,