From 2428e685848cb840de27af9f85ae38eb0c0c4762 Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Fri, 26 Jul 2024 14:46:52 -0700 Subject: [PATCH] msglist: Follow web instead of Figma for message timestamp color Just because web has a dark-theme variant for this color, and the Figma doesn't yet. --- lib/widgets/message_list.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/widgets/message_list.dart b/lib/widgets/message_list.dart index 5cebbbe019..8ca678ae48 100644 --- a/lib/widgets/message_list.dart +++ b/lib/widgets/message_list.dart @@ -1004,5 +1004,4 @@ class MessageWithPossibleSender extends StatelessWidget { // TODO web seems to ignore locale in formatting time, but we could do better final _kMessageTimestampFormat = DateFormat('h:mm aa', 'en_US'); -// TODO(#95) need dark-theme color (this one comes from the Figma) -final _kMessageTimestampColor = const HSLColor.fromAHSL(1, 0, 0, 0.5).toColor(); +final _kMessageTimestampColor = const HSLColor.fromAHSL(0.8, 0, 0, 0.2).toColor();