chore: Follow up reply color

pull/1571/head
Krille 6 months ago
parent 6f18f71644
commit 7504756caf
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -33,9 +33,13 @@ class ReplyContent extends StatelessWidget {
final displayEvent =
timeline != null ? replyEvent.getDisplayEvent(timeline) : replyEvent;
final fontSize = AppConfig.messageFontSize * AppConfig.fontSizeFactor;
final color = ownMessage
? theme.colorScheme.tertiaryContainer
: theme.colorScheme.tertiary;
final color = theme.brightness == Brightness.light
? ownMessage
? theme.colorScheme.onTertiaryContainer
: theme.colorScheme.onTertiary
: ownMessage
? theme.colorScheme.tertiaryContainer
: theme.colorScheme.tertiary;
return Material(
color: backgroundColor ??

Loading…
Cancel
Save