@@ -150,7 +150,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
150150 bgSearchInput: const Color (0xffe3e3e3 ),
151151 textMessage: const Color (0xff262626 ),
152152 channelColorSwatches: ChannelColorSwatches .light,
153- colorMessageHeaderIconInteractive: Colors .black.withValues (alpha: 0.2 ),
154153 contextMenuCancelBg: const Color (0xff797986 ).withValues (alpha: 0.15 ),
155154 contextMenuCancelPressedBg: const Color (0xff797986 ).withValues (alpha: 0.20 ),
156155 dmHeaderBg: const HSLColor .fromAHSL (1 , 46 , 0.35 , 0.93 ).toColor (),
@@ -202,7 +201,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
202201 contextMenuCancelBg: const Color (0xff797986 ).withValues (alpha: 0.15 ), // the same as the light mode in Figma
203202 contextMenuCancelPressedBg: const Color (0xff797986 ).withValues (alpha: 0.20 ), // the same as the light mode in Figma
204203 // TODO(design-dark) need proper dark-theme color (this is ad hoc)
205- colorMessageHeaderIconInteractive: Colors .white.withValues (alpha: 0.2 ),
206204 dmHeaderBg: const HSLColor .fromAHSL (1 , 46 , 0.15 , 0.2 ).toColor (),
207205 // TODO(design-dark) need proper dark-theme color (this is ad hoc)
208206 groupDmConversationIcon: Colors .white.withValues (alpha: 0.5 ),
@@ -256,7 +254,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
256254 required this .bgSearchInput,
257255 required this .textMessage,
258256 required this .channelColorSwatches,
259- required this .colorMessageHeaderIconInteractive,
260257 required this .contextMenuCancelBg,
261258 required this .contextMenuCancelPressedBg,
262259 required this .dmHeaderBg,
@@ -318,7 +315,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
318315 final ChannelColorSwatches channelColorSwatches;
319316
320317 // Not named variables in Figma; taken from older Figma drafts, or elsewhere.
321- final Color colorMessageHeaderIconInteractive;
322318 final Color contextMenuCancelBg; // In Figma, but unnamed.
323319 final Color contextMenuCancelPressedBg; // In Figma, but unnamed.
324320 final Color dmHeaderBg;
@@ -367,7 +363,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
367363 Color ? bgSearchInput,
368364 Color ? textMessage,
369365 ChannelColorSwatches ? channelColorSwatches,
370- Color ? colorMessageHeaderIconInteractive,
371366 Color ? contextMenuCancelBg,
372367 Color ? contextMenuCancelPressedBg,
373368 Color ? dmHeaderBg,
@@ -415,7 +410,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
415410 bgSearchInput: bgSearchInput ?? this .bgSearchInput,
416411 textMessage: textMessage ?? this .textMessage,
417412 channelColorSwatches: channelColorSwatches ?? this .channelColorSwatches,
418- colorMessageHeaderIconInteractive: colorMessageHeaderIconInteractive ?? this .colorMessageHeaderIconInteractive,
419413 contextMenuCancelBg: contextMenuCancelBg ?? this .contextMenuCancelBg,
420414 contextMenuCancelPressedBg: contextMenuCancelPressedBg ?? this .contextMenuCancelPressedBg,
421415 dmHeaderBg: dmHeaderBg ?? this .dmHeaderBg,
@@ -470,7 +464,6 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
470464 bgSearchInput: Color .lerp (bgSearchInput, other.bgSearchInput, t)! ,
471465 textMessage: Color .lerp (textMessage, other.textMessage, t)! ,
472466 channelColorSwatches: ChannelColorSwatches .lerp (channelColorSwatches, other.channelColorSwatches, t),
473- colorMessageHeaderIconInteractive: Color .lerp (colorMessageHeaderIconInteractive, other.colorMessageHeaderIconInteractive, t)! ,
474467 contextMenuCancelBg: Color .lerp (contextMenuCancelBg, other.contextMenuCancelBg, t)! ,
475468 contextMenuCancelPressedBg: Color .lerp (contextMenuCancelPressedBg, other.contextMenuCancelPressedBg, t)! ,
476469 dmHeaderBg: Color .lerp (dmHeaderBg, other.dmHeaderBg, t)! ,
0 commit comments