6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 91ee98b9
Changed files
comwell_key_app/lib/overview/components/bookings_tab_view.dart | 4 +++- .../lib/overview/components/current_booking_list_item_view.dart | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-)
Diff
diff --git a/comwell_key_app/lib/overview/components/bookings_tab_view.dart b/comwell_key_app/lib/overview/components/bookings_tab_view.dart
index 8f24dad1..3c354807 100644
--- a/comwell_key_app/lib/overview/components/bookings_tab_view.dart
+++ b/comwell_key_app/lib/overview/components/bookings_tab_view.dart
@@ -45,7 +45,9 @@ class BookingsTabView extends StatelessWidget {
height: 25,
),
Text(bookingsTitle,
- style: theme.textTheme.headlineLarge),
+ style: theme.textTheme.headlineLarge?.copyWith(
+ color: colorPrimaryText,
+ )),
const SizedBox(
height: 12
),
diff --git a/comwell_key_app/lib/overview/components/current_booking_list_item_view.dart b/comwell_key_app/lib/overview/components/current_booking_list_item_view.dart
index 7e6d2fb0..d6f5870a 100644
--- a/comwell_key_app/lib/overview/components/current_booking_list_item_view.dart
+++ b/comwell_key_app/lib/overview/components/current_booking_list_item_view.dart
@@ -114,7 +114,7 @@ class CurrentBookingListItem extends StatelessWidget {
overflow: TextOverflow.ellipsis,
textAlign: TextAlign.start,
style: theme.textTheme.bodySmall?.copyWith(
- color: Colors.grey.shade500,
+ color: colorHeadlineText,
),
),
],