From 18539e0d2fc94ddc6feefc08a9ff538b6aa58f40 Mon Sep 17 00:00:00 2001 From: Brazol Date: Mon, 16 Mar 2026 13:28:44 +0100 Subject: [PATCH] read text color in message theme --- .../lib/src/theme/components/stream_message_theme.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/stream_core_flutter/lib/src/theme/components/stream_message_theme.dart b/packages/stream_core_flutter/lib/src/theme/components/stream_message_theme.dart index 54461560..279ae769 100644 --- a/packages/stream_core_flutter/lib/src/theme/components/stream_message_theme.dart +++ b/packages/stream_core_flutter/lib/src/theme/components/stream_message_theme.dart @@ -59,6 +59,7 @@ class StreamMessageStyle with _$StreamMessageStyle { this.textLinkColor, this.textReactionColor, this.textSystemColor, + this.textReadColor, this.borderColor, this.borderOnChatColor, this.threadConnectorColor, @@ -80,6 +81,7 @@ class StreamMessageStyle with _$StreamMessageStyle { final Color? textLinkColor; final Color? textReactionColor; final Color? textSystemColor; + final Color? textReadColor; final Color? borderColor; final Color? borderOnChatColor; @@ -112,6 +114,7 @@ class _MessageThemeDefaults { textLinkColor: _colorScheme.textLink, textReactionColor: _colorScheme.textSecondary, textSystemColor: _colorScheme.textSecondary, + textReadColor: _colorScheme.accentPrimary, borderColor: _colorScheme.borderSubtle, borderOnChatColor: _colorScheme.borderOnSurface, replyIndicatorColor: _colorScheme.borderOnSurface, @@ -128,6 +131,7 @@ class _MessageThemeDefaults { textLinkColor: _colorScheme.textLink, textReactionColor: _colorScheme.textSecondary, textSystemColor: _colorScheme.textSecondary, + textReadColor: _colorScheme.accentPrimary, borderColor: _colorScheme.brand.shade100, borderOnChatColor: _colorScheme.brand.shade300, replyIndicatorColor: _colorScheme.brand.shade400,