From 43031b50eb3c2718843349b6c7b9a3bb2d2acf4f Mon Sep 17 00:00:00 2001 From: "Lucas.Xu" Date: Mon, 28 Nov 2022 21:31:33 +0800 Subject: [PATCH] feat: update bold text style --- frontend/app_flowy/lib/plugins/document/editor_styles.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/app_flowy/lib/plugins/document/editor_styles.dart b/frontend/app_flowy/lib/plugins/document/editor_styles.dart index 1993af45d8..9ff3aca30d 100644 --- a/frontend/app_flowy/lib/plugins/document/editor_styles.dart +++ b/frontend/app_flowy/lib/plugins/document/editor_styles.dart @@ -20,7 +20,8 @@ EditorStyle customEditorTheme(BuildContext context) { fontSize: documentStyle.fontSize, ), bold: editorStyle.bold?.copyWith( - fontWeight: FontWeight.w500, + fontWeight: FontWeight.w600, + fontFamily: 'poppins-Bold', ), backgroundColor: Theme.of(context).colorScheme.surface, );