diff --git a/flutter/lib/common/widgets/login.dart b/flutter/lib/common/widgets/login.dart index 0fbd506f2..5cffd9f6f 100644 --- a/flutter/lib/common/widgets/login.dart +++ b/flutter/lib/common/widgets/login.dart @@ -510,7 +510,9 @@ Future loginDialog() async { child: Icon( Icons.close, size: 22, - color: Colors.black54, + color: MyTheme.currentThemeMode() == ThemeMode.dark + ? Colors.white70 + : Colors.black54, ), onTap: onDialogCancel, hoverColor: Colors.red,