diff --git a/lib/ui/app/tables/entity_list.dart b/lib/ui/app/tables/entity_list.dart index 6036211ce..8b19d056e 100644 --- a/lib/ui/app/tables/entity_list.dart +++ b/lib/ui/app/tables/entity_list.dart @@ -396,11 +396,17 @@ class _EntityListState extends State { Text( localization.more, style: TextStyle( - color: state.headerTextColor), + color: state.prefState + .enableDarkMode + ? Colors.white + : Colors.black), ), SizedBox(width: 4), Icon(Icons.arrow_drop_down, - color: state.headerTextColor), + color: + state.prefState.enableDarkMode + ? Colors.white + : Colors.black), ], ), ),