From 7628af184eb55f3d17d686e67a8a2dd36858135d Mon Sep 17 00:00:00 2001 From: loveucifer Date: Sun, 28 Sep 2025 22:16:24 +0530 Subject: [PATCH] Fix bgMessageRegular to match Figma specification The background color for messageRegular was mismatched with the Figma design spec. Updated it with the correct specifications Fixes #1685. --- lib/widgets/theme.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/theme.dart b/lib/widgets/theme.dart index 44517ab2c3..4af1083fd2 100644 --- a/lib/widgets/theme.dart +++ b/lib/widgets/theme.dart @@ -238,7 +238,7 @@ class DesignVariables extends ThemeExtension { bgCounterUnread: const Color(0xff666699).withValues(alpha: 0.37), bgMenuButtonActive: Colors.black.withValues(alpha: 0.2), bgMenuButtonSelected: Colors.black.withValues(alpha: 0.25), - bgMessageRegular: const HSLColor.fromAHSL(1, 0, 0, 0.11).toColor(), + bgMessageRegular: const Color(0xff1d1d1d), bgTopBar: const Color(0xff242424), borderBar: const Color(0xffffffff).withValues(alpha: 0.1), borderMenuButtonSelected: Colors.white.withValues(alpha: 0.1),