Skip to content

Commit ba957c0

Browse files
committed
fix: update the color of the selection menu item
1 parent 84200dd commit ba957c0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

frontend/app_flowy/lib/plugins/document/editor_styles.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ EditorStyle customEditorTheme(BuildContext context) {
2323
fontFamily: 'poppins-Bold',
2424
),
2525
backgroundColor: Theme.of(context).colorScheme.surface,
26-
selectionMenuItemSelectedIconColor: Theme.of(context).colorScheme.primary,
26+
selectionMenuItemSelectedIconColor:
27+
Theme.of(context).textTheme.bodyMedium?.color,
28+
selectionMenuItemSelectedTextColor:
29+
Theme.of(context).textTheme.bodyMedium?.color,
2730
);
2831
return editorStyle;
2932
}

0 commit comments

Comments
 (0)