diff --git a/frontend/lib/provider/quote_provider.dart b/frontend/lib/provider/quote_provider.dart index 1fe1995..f9c35b8 100644 --- a/frontend/lib/provider/quote_provider.dart +++ b/frontend/lib/provider/quote_provider.dart @@ -211,13 +211,11 @@ class QuoteProvider extends ChangeNotifier { Color getLeaderboardEntryFgColor(BuildContext context, int index) { switch (index) { case 0: - return Colors.black; // 1st place case 1: - return Colors.black; // 2nd place case 2: - return Colors.black; // 3rd place + return Colors.black; default: - return Colors.white; // default for all other entries + return Theme.of(context).textTheme.bodyMedium!.color!; } } } \ No newline at end of file