From 9028695ce9e41104575c204b95602469255069a6 Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Fri, 26 Jul 2024 18:00:08 -0700 Subject: [PATCH] msglist: Lighten MessageListTheme.dark().editedMovedMarkerCollapsed, ad hoc This should have more reasonable contrast, but we need an approved color from Vlad. --- lib/widgets/message_list.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/widgets/message_list.dart b/lib/widgets/message_list.dart index 789a1c865b..efa9b3170a 100644 --- a/lib/widgets/message_list.dart +++ b/lib/widgets/message_list.dart @@ -58,8 +58,8 @@ class MessageListTheme extends ThemeExtension { dateSeparator: Colors.white, dateSeparatorText: const HSLColor.fromAHSL(0.75, 0, 0, 1).toColor(), dmRecipientHeaderBg: const HSLColor.fromAHSL(1, 46, 0.15, 0.2).toColor(), - // TODO(#95) need dark-theme color - editedMovedMarkerCollapsed: const Color.fromARGB(128, 146, 167, 182), + // TODO(#95) need proper dark-theme color (this is ad hoc) + editedMovedMarkerCollapsed: const Color.fromARGB(128, 214, 202, 194), messageTimestamp: const HSLColor.fromAHSL(0.6, 0, 0, 1).toColor(), recipientHeaderText: const HSLColor.fromAHSL(0.8, 0, 0, 1).toColor(), senderBotIcon: const HSLColor.fromAHSL(1, 180, 0.05, 0.5).toColor(),