From 953186367893db60763182d36751fe9b828a301c Mon Sep 17 00:00:00 2001 From: loveucifer Date: Sun, 28 Sep 2025 22:16:24 +0530 Subject: [PATCH] theme: Fix bgMessageRegular to match Figma specification --- 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),