@@ -135,7 +135,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
135
135
textInput: const Color (0xff000000 ),
136
136
title: const Color (0xff1a1a1a ),
137
137
channelColorSwatches: ChannelColorSwatches .light,
138
- atMentionMarker : const HSLColor .fromAHSL (0.5 , 0 , 0 , 0.2 ).toColor (),
138
+ inboxItemIconMarker : const HSLColor .fromAHSL (0.5 , 0 , 0 , 0.2 ).toColor (),
139
139
colorMessageHeaderIconInteractive: Colors .black.withValues (alpha: 0.2 ),
140
140
contextMenuCancelBg: const Color (0xff797986 ).withValues (alpha: 0.15 ),
141
141
contextMenuCancelPressedBg: const Color (0xff797986 ).withValues (alpha: 0.20 ),
@@ -180,7 +180,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
180
180
contextMenuCancelBg: const Color (0xff797986 ).withValues (alpha: 0.15 ), // the same as the light mode in Figma
181
181
contextMenuCancelPressedBg: const Color (0xff797986 ).withValues (alpha: 0.20 ), // the same as the light mode in Figma
182
182
// TODO(design-dark) need proper dark-theme color (this is ad hoc)
183
- atMentionMarker : const HSLColor .fromAHSL (0.4 , 0 , 0 , 1 ).toColor (),
183
+ inboxItemIconMarker : const HSLColor .fromAHSL (0.4 , 0 , 0 , 1 ).toColor (),
184
184
colorMessageHeaderIconInteractive: Colors .white.withValues (alpha: 0.2 ),
185
185
dmHeaderBg: const HSLColor .fromAHSL (1 , 46 , 0.15 , 0.2 ).toColor (),
186
186
// TODO(design-dark) need proper dark-theme color (this is ad hoc)
@@ -226,7 +226,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
226
226
required this .textInput,
227
227
required this .title,
228
228
required this .channelColorSwatches,
229
- required this .atMentionMarker ,
229
+ required this .inboxItemIconMarker ,
230
230
required this .colorMessageHeaderIconInteractive,
231
231
required this .contextMenuCancelBg,
232
232
required this .contextMenuCancelPressedBg,
@@ -280,7 +280,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
280
280
final ChannelColorSwatches channelColorSwatches;
281
281
282
282
// Not named variables in Figma; taken from older Figma drafts, or elsewhere.
283
- final Color atMentionMarker ;
283
+ final Color inboxItemIconMarker ;
284
284
final Color colorMessageHeaderIconInteractive;
285
285
final Color contextMenuCancelBg; // In Figma, but unnamed.
286
286
final Color contextMenuCancelPressedBg; // In Figma, but unnamed.
@@ -361,7 +361,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
361
361
textInput: textInput ?? this .textInput,
362
362
title: title ?? this .title,
363
363
channelColorSwatches: channelColorSwatches ?? this .channelColorSwatches,
364
- atMentionMarker : atMentionMarker ?? this .atMentionMarker ,
364
+ inboxItemIconMarker : atMentionMarker ?? this .inboxItemIconMarker ,
365
365
colorMessageHeaderIconInteractive: colorMessageHeaderIconInteractive ?? this .colorMessageHeaderIconInteractive,
366
366
contextMenuCancelBg: contextMenuCancelBg ?? this .contextMenuCancelBg,
367
367
contextMenuCancelPressedBg: contextMenuCancelPressedBg ?? this .contextMenuCancelPressedBg,
@@ -408,7 +408,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
408
408
textInput: Color .lerp (textInput, other.textInput, t)! ,
409
409
title: Color .lerp (title, other.title, t)! ,
410
410
channelColorSwatches: ChannelColorSwatches .lerp (channelColorSwatches, other.channelColorSwatches, t),
411
- atMentionMarker : Color .lerp (atMentionMarker , other.atMentionMarker , t)! ,
411
+ inboxItemIconMarker : Color .lerp (inboxItemIconMarker , other.inboxItemIconMarker , t)! ,
412
412
colorMessageHeaderIconInteractive: Color .lerp (colorMessageHeaderIconInteractive, other.colorMessageHeaderIconInteractive, t)! ,
413
413
contextMenuCancelBg: Color .lerp (contextMenuCancelBg, other.contextMenuCancelBg, t)! ,
414
414
contextMenuCancelPressedBg: Color .lerp (contextMenuCancelPressedBg, other.contextMenuCancelPressedBg, t)! ,
0 commit comments