Skip to content

Commit 2292397

Browse files
committed
NOMERGE test dark-theme message content
1 parent 013cc28 commit 2292397

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/widgets/message_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ class MessageItem extends StatelessWidget {
587587
child: _UnreadMarker(
588588
isRead: message.flags.contains(MessageFlag.read),
589589
child: ColoredBox(
590-
color: Colors.white,
590+
color: const HSLColor.fromAHSL(1, 0, 0, 0.15).toColor(),
591591
child: Column(children: [
592592
MessageWithPossibleSender(item: item),
593593
if (trailingWhitespace != null && item.isLastInBlock) SizedBox(height: trailingWhitespace!),

lib/widgets/theme.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ThemeData zulipThemeData(BuildContext context) {
99
final designVariables = DesignVariables();
1010
return ThemeData(
1111
typography: zulipTypography(context),
12-
extensions: [ContentTheme.light(context), designVariables],
12+
extensions: [ContentTheme.dark(context), designVariables],
1313
appBarTheme: AppBarTheme(
1414
// Set these two fields to prevent a color change in [AppBar]s when
1515
// there is something scrolled under it. If an app bar hasn't been

0 commit comments

Comments
 (0)