diff --git a/mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart b/mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart index d06e90f10e..b326fbbd49 100644 --- a/mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart +++ b/mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart @@ -48,8 +48,14 @@ class TopControlAppBar extends HookConsumerWidget with PreferredSizeWidget { onToggleMotionVideo(); }, icon: isPlayingMotionVideo - ? const Icon(Icons.motion_photos_pause_outlined) - : const Icon(Icons.play_circle_outline_rounded), + ? Icon( + Icons.motion_photos_pause_outlined, + color: Colors.grey[200], + ) + : Icon( + Icons.play_circle_outline_rounded, + color: Colors.grey[200], + ), ), if (!asset.isLocal) IconButton(