Skip to content

Commit

Permalink
inbox: Express _AllDmsHeaderItem.uncollapsedBackgroundColor as HSL
Browse files Browse the repository at this point in the history
To align with web, which labels this color
--color-background-private-message-header.

(If there is a slight change to the color we use, it's within a
rounding error.)
  • Loading branch information
chrisbobbe authored and gnprice committed May 20, 2024
1 parent cf7851f commit b9e585e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/inbox.dart
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ class _AllDmsHeaderItem extends _HeaderItem {
@override get collapsedIconColor => const Color(0xFF222222);
@override get uncollapsedIconColor => const Color(0xFF222222);

@override get uncollapsedBackgroundColor => const Color(0xFFF3F0E7);
@override get uncollapsedBackgroundColor => const HSLColor.fromAHSL(1, 46, 0.35, 0.93).toColor();
@override get unreadCountBadgeBackgroundColor => null;

@override get onCollapseButtonTap => () async {
Expand Down

0 comments on commit b9e585e

Please sign in to comment.