Skip to content

Commit

Permalink
NOMERGE test dark-theme message content
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbobbe committed Jun 26, 2024
1 parent 013cc28 commit 2292397
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/widgets/message_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ class MessageItem extends StatelessWidget {
child: _UnreadMarker(
isRead: message.flags.contains(MessageFlag.read),
child: ColoredBox(
color: Colors.white,
color: const HSLColor.fromAHSL(1, 0, 0, 0.15).toColor(),
child: Column(children: [
MessageWithPossibleSender(item: item),
if (trailingWhitespace != null && item.isLastInBlock) SizedBox(height: trailingWhitespace!),
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ThemeData zulipThemeData(BuildContext context) {
final designVariables = DesignVariables();
return ThemeData(
typography: zulipTypography(context),
extensions: [ContentTheme.light(context), designVariables],
extensions: [ContentTheme.dark(context), designVariables],
appBarTheme: AppBarTheme(
// Set these two fields to prevent a color change in [AppBar]s when
// there is something scrolled under it. If an app bar hasn't been
Expand Down

0 comments on commit 2292397

Please sign in to comment.