diff --git a/lib/widgets/content.dart b/lib/widgets/content.dart index 6d9ef651ac..01e22bbc17 100644 --- a/lib/widgets/content.dart +++ b/lib/widgets/content.dart @@ -68,7 +68,7 @@ class ContentTheme extends ThemeExtension { colorMessageMediaContainerBackground: const HSLColor.fromAHSL(0.03, 0, 0, 1).toColor(), colorThematicBreak: const HSLColor.fromAHSL(1, 0, 0, .87).toColor().withValues(alpha: 0.2), textStylePlainParagraph: _plainParagraphCommon(context).copyWith( - color: const HSLColor.fromAHSL(0.75, 0, 0, 1).toColor(), + color: const HSLColor.fromAHSL(1, 0, 0, 0.85).toColor(), debugLabel: 'ContentTheme.textStylePlainParagraph'), codeBlockTextStyles: CodeBlockTextStyles.dark(context), textStyleError: TextStyle(fontSize: kBaseFontSize, color: Colors.red.shade900) diff --git a/lib/widgets/message_list.dart b/lib/widgets/message_list.dart index adc6a038d6..b53af058d6 100644 --- a/lib/widgets/message_list.dart +++ b/lib/widgets/message_list.dart @@ -58,7 +58,7 @@ 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(), - messageTimestamp: const HSLColor.fromAHSL(0.6, 0, 0, 1).toColor(), + messageTimestamp: const HSLColor.fromAHSL(0.8, 0, 0, 0.85).toColor(), recipientHeaderText: const HSLColor.fromAHSL(0.8, 0, 0, 1).toColor(), senderBotIcon: const HSLColor.fromAHSL(1, 180, 0.05, 0.5).toColor(), senderName: const HSLColor.fromAHSL(0.85, 0, 0, 1).toColor(),