Skip to content

Commit 2c18dc5

Browse files
committed
msglist: Follow web in chevron-right icon color in stream recipient header
The old color (added in a56577a) doesn't match the Figma: https://www.figma.com/design/1JTNtYo9memgW7vV6d0ygq/Zulip-Mobile?node-id=538-20849&t=sbABZjnTMDdEpaTX-0 #9A9A9A or the web app: --color-message-header-icon-non-interactive, which is hsl(0deg 0% 0% / 30%)) Matching the web app is convenient because we can get a dark-theme variant from the web app. The Figma doesn't yet offer a dark-theme variant.
1 parent 41acd77 commit 2c18dc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/widgets/message_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ class StreamMessageRecipientHeader extends StatelessWidget {
697697
// Icon is 16px wide here so horizontal padding is 1px.
698698
padding: const EdgeInsets.symmetric(horizontal: 1),
699699
child: Icon(size: 16,
700-
color: Colors.black.withOpacity(0.6),
700+
color: Colors.black.withOpacity(0.3),
701701
ZulipIcons.chevron_right)),
702702
]));
703703
}

0 commit comments

Comments
 (0)