@@ -147,7 +147,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
147
147
bgSearchInput: const Color (0xffe3e3e3 ),
148
148
textMessage: const Color (0xff262626 ),
149
149
channelColorSwatches: ChannelColorSwatches .light,
150
- colorMessageHeaderIconInteractive: Colors .black.withValues (alpha: 0.2 ),
151
150
contextMenuCancelBg: const Color (0xff797986 ).withValues (alpha: 0.15 ),
152
151
contextMenuCancelPressedBg: const Color (0xff797986 ).withValues (alpha: 0.20 ),
153
152
dmHeaderBg: const HSLColor .fromAHSL (1 , 46 , 0.35 , 0.93 ).toColor (),
@@ -199,7 +198,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
199
198
contextMenuCancelBg: const Color (0xff797986 ).withValues (alpha: 0.15 ), // the same as the light mode in Figma
200
199
contextMenuCancelPressedBg: const Color (0xff797986 ).withValues (alpha: 0.20 ), // the same as the light mode in Figma
201
200
// TODO(design-dark) need proper dark-theme color (this is ad hoc)
202
- colorMessageHeaderIconInteractive: Colors .white.withValues (alpha: 0.2 ),
203
201
dmHeaderBg: const HSLColor .fromAHSL (1 , 46 , 0.15 , 0.2 ).toColor (),
204
202
// TODO(design-dark) need proper dark-theme color (this is ad hoc)
205
203
groupDmConversationIcon: Colors .white.withValues (alpha: 0.5 ),
@@ -253,7 +251,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
253
251
required this .bgSearchInput,
254
252
required this .textMessage,
255
253
required this .channelColorSwatches,
256
- required this .colorMessageHeaderIconInteractive,
257
254
required this .contextMenuCancelBg,
258
255
required this .contextMenuCancelPressedBg,
259
256
required this .dmHeaderBg,
@@ -315,7 +312,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
315
312
final ChannelColorSwatches channelColorSwatches;
316
313
317
314
// Not named variables in Figma; taken from older Figma drafts, or elsewhere.
318
- final Color colorMessageHeaderIconInteractive;
319
315
final Color contextMenuCancelBg; // In Figma, but unnamed.
320
316
final Color contextMenuCancelPressedBg; // In Figma, but unnamed.
321
317
final Color dmHeaderBg;
@@ -364,7 +360,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
364
360
Color ? bgSearchInput,
365
361
Color ? textMessage,
366
362
ChannelColorSwatches ? channelColorSwatches,
367
- Color ? colorMessageHeaderIconInteractive,
368
363
Color ? contextMenuCancelBg,
369
364
Color ? contextMenuCancelPressedBg,
370
365
Color ? dmHeaderBg,
@@ -412,7 +407,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
412
407
bgSearchInput: bgSearchInput ?? this .bgSearchInput,
413
408
textMessage: textMessage ?? this .textMessage,
414
409
channelColorSwatches: channelColorSwatches ?? this .channelColorSwatches,
415
- colorMessageHeaderIconInteractive: colorMessageHeaderIconInteractive ?? this .colorMessageHeaderIconInteractive,
416
410
contextMenuCancelBg: contextMenuCancelBg ?? this .contextMenuCancelBg,
417
411
contextMenuCancelPressedBg: contextMenuCancelPressedBg ?? this .contextMenuCancelPressedBg,
418
412
dmHeaderBg: dmHeaderBg ?? this .dmHeaderBg,
@@ -467,7 +461,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
467
461
bgSearchInput: Color .lerp (bgSearchInput, other.bgSearchInput, t)! ,
468
462
textMessage: Color .lerp (textMessage, other.textMessage, t)! ,
469
463
channelColorSwatches: ChannelColorSwatches .lerp (channelColorSwatches, other.channelColorSwatches, t),
470
- colorMessageHeaderIconInteractive: Color .lerp (colorMessageHeaderIconInteractive, other.colorMessageHeaderIconInteractive, t)! ,
471
464
contextMenuCancelBg: Color .lerp (contextMenuCancelBg, other.contextMenuCancelBg, t)! ,
472
465
contextMenuCancelPressedBg: Color .lerp (contextMenuCancelPressedBg, other.contextMenuCancelPressedBg, t)! ,
473
466
dmHeaderBg: Color .lerp (dmHeaderBg, other.dmHeaderBg, t)! ,
0 commit comments