Skip to content

Commit 07131d2

Browse files
committed
subscription_list: For channel text, use #222222 instead of #262626
Explanation in the comment.
1 parent 2d46c9e commit 07131d2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

lib/widgets/subscription_list.dart

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,16 @@ class SubscriptionItem extends StatelessWidget {
240240
style: const TextStyle(
241241
fontSize: 18,
242242
height: (20 / 18),
243+
// The old, soon-to-be-outdated Figma has #262626:
244+
// https://www.figma.com/design/1JTNtYo9memgW7vV6d0ygq/Zulip-Mobile?node-id=171-12359&t=OgFPAdLiXz9OEzCF-0
245+
// That might be accidental, though. The same page has
246+
// #222222 for the topics. The "Inbox" page in that Figma
247+
// has #222222 for the "Private messages" header, but yeah,
248+
// #262626 for the channel headers. Hmm...on our "Inbox",
249+
// looks like we just took #222222 for both those headers.
250+
// Anyway, eager to have the updated Figma to work from.
243251
// TODO(#95) need dark-theme color
244-
color: Color(0xFF262626),
252+
color: Color(0xff222222),
245253
).merge(weightVariableTextStyle(context,
246254
wght: hasUnreads ? 600 : null)),
247255
maxLines: 1,

0 commit comments

Comments
 (0)