@@ -150,7 +150,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
150
150
bgSearchInput: const Color (0xffe3e3e3 ),
151
151
textMessage: const Color (0xff262626 ),
152
152
channelColorSwatches: ChannelColorSwatches .light,
153
- colorMessageHeaderIconInteractive: Colors .black.withValues (alpha: 0.2 ),
154
153
contextMenuCancelBg: const Color (0xff797986 ).withValues (alpha: 0.15 ),
155
154
contextMenuCancelPressedBg: const Color (0xff797986 ).withValues (alpha: 0.20 ),
156
155
dmHeaderBg: const HSLColor .fromAHSL (1 , 46 , 0.35 , 0.93 ).toColor (),
@@ -202,7 +201,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
202
201
contextMenuCancelBg: const Color (0xff797986 ).withValues (alpha: 0.15 ), // the same as the light mode in Figma
203
202
contextMenuCancelPressedBg: const Color (0xff797986 ).withValues (alpha: 0.20 ), // the same as the light mode in Figma
204
203
// TODO(design-dark) need proper dark-theme color (this is ad hoc)
205
- colorMessageHeaderIconInteractive: Colors .white.withValues (alpha: 0.2 ),
206
204
dmHeaderBg: const HSLColor .fromAHSL (1 , 46 , 0.15 , 0.2 ).toColor (),
207
205
// TODO(design-dark) need proper dark-theme color (this is ad hoc)
208
206
groupDmConversationIcon: Colors .white.withValues (alpha: 0.5 ),
@@ -256,7 +254,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
256
254
required this .bgSearchInput,
257
255
required this .textMessage,
258
256
required this .channelColorSwatches,
259
- required this .colorMessageHeaderIconInteractive,
260
257
required this .contextMenuCancelBg,
261
258
required this .contextMenuCancelPressedBg,
262
259
required this .dmHeaderBg,
@@ -318,7 +315,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
318
315
final ChannelColorSwatches channelColorSwatches;
319
316
320
317
// Not named variables in Figma; taken from older Figma drafts, or elsewhere.
321
- final Color colorMessageHeaderIconInteractive;
322
318
final Color contextMenuCancelBg; // In Figma, but unnamed.
323
319
final Color contextMenuCancelPressedBg; // In Figma, but unnamed.
324
320
final Color dmHeaderBg;
@@ -367,7 +363,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
367
363
Color ? bgSearchInput,
368
364
Color ? textMessage,
369
365
ChannelColorSwatches ? channelColorSwatches,
370
- Color ? colorMessageHeaderIconInteractive,
371
366
Color ? contextMenuCancelBg,
372
367
Color ? contextMenuCancelPressedBg,
373
368
Color ? dmHeaderBg,
@@ -415,7 +410,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
415
410
bgSearchInput: bgSearchInput ?? this .bgSearchInput,
416
411
textMessage: textMessage ?? this .textMessage,
417
412
channelColorSwatches: channelColorSwatches ?? this .channelColorSwatches,
418
- colorMessageHeaderIconInteractive: colorMessageHeaderIconInteractive ?? this .colorMessageHeaderIconInteractive,
419
413
contextMenuCancelBg: contextMenuCancelBg ?? this .contextMenuCancelBg,
420
414
contextMenuCancelPressedBg: contextMenuCancelPressedBg ?? this .contextMenuCancelPressedBg,
421
415
dmHeaderBg: dmHeaderBg ?? this .dmHeaderBg,
@@ -470,7 +464,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
470
464
bgSearchInput: Color .lerp (bgSearchInput, other.bgSearchInput, t)! ,
471
465
textMessage: Color .lerp (textMessage, other.textMessage, t)! ,
472
466
channelColorSwatches: ChannelColorSwatches .lerp (channelColorSwatches, other.channelColorSwatches, t),
473
- colorMessageHeaderIconInteractive: Color .lerp (colorMessageHeaderIconInteractive, other.colorMessageHeaderIconInteractive, t)! ,
474
467
contextMenuCancelBg: Color .lerp (contextMenuCancelBg, other.contextMenuCancelBg, t)! ,
475
468
contextMenuCancelPressedBg: Color .lerp (contextMenuCancelPressedBg, other.contextMenuCancelPressedBg, t)! ,
476
469
dmHeaderBg: Color .lerp (dmHeaderBg, other.dmHeaderBg, t)! ,
0 commit comments