Skip to content

Commit 7628af1

Browse files
committed
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.
1 parent de03f4b commit 7628af1

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)