diff --git a/lib/screens/realm/realm_detail.dart b/lib/screens/realm/realm_detail.dart index 0438e25..a032581 100644 --- a/lib/screens/realm/realm_detail.dart +++ b/lib/screens/realm/realm_detail.dart @@ -88,9 +88,9 @@ class _RealmDetailScreenState extends State { title: Text(_realm?.name ?? 'loading'.tr()), bottom: TabBar( tabs: [ - Tab(icon: const Icon(Symbols.home)), - Tab(icon: const Icon(Symbols.group)), - Tab(icon: const Icon(Symbols.settings)), + Tab(icon: Icon(Symbols.home, color: Theme.of(context).appBarTheme.foregroundColor)), + Tab(icon: Icon(Symbols.group, color: Theme.of(context).appBarTheme.foregroundColor)), + Tab(icon: Icon(Symbols.settings, color: Theme.of(context).appBarTheme.foregroundColor)), ], ), ),