Skip to content

Commit

Permalink
msglist [nfc]: Comment about typing-indicator color for light/dark
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbobbe committed Aug 2, 2024
1 parent 052f203 commit 1aea305
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/widgets/message_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,9 @@ class _TypingStatusWidgetState extends State<TypingStatusWidget> with PerAccount
padding: const EdgeInsetsDirectional.only(start: 16, top: 2),
child: Text(text,
style: const TextStyle(
color: HslColor(0, 0, 53), fontStyle: FontStyle.italic)));
// Web has the same color in light and dark mode.
color: HslColor(0, 0, 53),
fontStyle: FontStyle.italic)));
}
}

Expand Down

0 comments on commit 1aea305

Please sign in to comment.