Skip to content

Commit 9a5d843

Browse files
committed
Fix dark mode bgMessageRegular color to match Figma design
Changed the dark mode bgMessageRegular value from HSLColor.fromAHSL(1, 0, 0, 0.11).toColor() to const Color(0xff1d1d1d) to match the Figma design where bg-message-regular variable in dark mode is #1D1D1D
1 parent de03f4b commit 9a5d843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/widgets/theme.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
238238
bgCounterUnread: const Color(0xff666699).withValues(alpha: 0.37),
239239
bgMenuButtonActive: Colors.black.withValues(alpha: 0.2),
240240
bgMenuButtonSelected: Colors.black.withValues(alpha: 0.25),
241-
bgMessageRegular: const HSLColor.fromAHSL(1, 0, 0, 0.11).toColor(),
241+
bgMessageRegular: const Color(0xff1d1d1d),
242242
bgTopBar: const Color(0xff242424),
243243
borderBar: const Color(0xffffffff).withValues(alpha: 0.1),
244244
borderMenuButtonSelected: Colors.white.withValues(alpha: 0.1),

0 commit comments

Comments
 (0)