Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ class StreamMessageStyle with _$StreamMessageStyle {
this.textLinkColor,
this.textReactionColor,
this.textSystemColor,
this.textReadColor,
this.borderColor,
this.borderOnChatColor,
this.threadConnectorColor,
Expand All @@ -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;
Expand Down Expand Up @@ -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,
Expand All @@ -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,
Expand Down
Loading