@@ -135,13 +135,13 @@ 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 (),
139
138
colorMessageHeaderIconInteractive: Colors .black.withValues (alpha: 0.2 ),
140
139
contextMenuCancelBg: const Color (0xff797986 ).withValues (alpha: 0.15 ),
141
140
contextMenuCancelPressedBg: const Color (0xff797986 ).withValues (alpha: 0.20 ),
142
141
dmHeaderBg: const HSLColor .fromAHSL (1 , 46 , 0.35 , 0.93 ).toColor (),
143
142
groupDmConversationIcon: Colors .black.withValues (alpha: 0.5 ),
144
143
groupDmConversationIconBg: const Color (0x33808080 ),
144
+ inboxItemIconMarker: const HSLColor .fromAHSL (0.5 , 0 , 0 , 0.2 ).toColor (),
145
145
loginOrDivider: const Color (0xffdedede ),
146
146
loginOrDividerText: const Color (0xff575757 ),
147
147
modalBarrierColor: const Color (0xff000000 ).withValues (alpha: 0.3 ),
@@ -180,13 +180,13 @@ 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 (),
184
183
colorMessageHeaderIconInteractive: Colors .white.withValues (alpha: 0.2 ),
185
184
dmHeaderBg: const HSLColor .fromAHSL (1 , 46 , 0.15 , 0.2 ).toColor (),
186
185
// TODO(design-dark) need proper dark-theme color (this is ad hoc)
187
186
groupDmConversationIcon: Colors .white.withValues (alpha: 0.5 ),
188
187
// TODO(design-dark) need proper dark-theme color (this is ad hoc)
189
188
groupDmConversationIconBg: const Color (0x33cccccc ),
189
+ inboxItemIconMarker: const HSLColor .fromAHSL (0.4 , 0 , 0 , 1 ).toColor (),
190
190
loginOrDivider: const Color (0xff424242 ),
191
191
loginOrDividerText: const Color (0xffa8a8a8 ),
192
192
modalBarrierColor: const Color (0xff000000 ).withValues (alpha: 0.5 ),
@@ -226,13 +226,13 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
226
226
required this .textInput,
227
227
required this .title,
228
228
required this .channelColorSwatches,
229
- required this .atMentionMarker,
230
229
required this .colorMessageHeaderIconInteractive,
231
230
required this .contextMenuCancelBg,
232
231
required this .contextMenuCancelPressedBg,
233
232
required this .dmHeaderBg,
234
233
required this .groupDmConversationIcon,
235
234
required this .groupDmConversationIconBg,
235
+ required this .inboxItemIconMarker,
236
236
required this .loginOrDivider,
237
237
required this .loginOrDividerText,
238
238
required this .modalBarrierColor,
@@ -280,13 +280,13 @@ 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;
284
283
final Color colorMessageHeaderIconInteractive;
285
284
final Color contextMenuCancelBg; // In Figma, but unnamed.
286
285
final Color contextMenuCancelPressedBg; // In Figma, but unnamed.
287
286
final Color dmHeaderBg;
288
287
final Color groupDmConversationIcon;
289
288
final Color groupDmConversationIconBg;
289
+ final Color inboxItemIconMarker;
290
290
final Color loginOrDivider; // TODO(design-dark) need proper dark-theme color (this is ad hoc)
291
291
final Color loginOrDividerText; // TODO(design-dark) need proper dark-theme color (this is ad hoc)
292
292
final Color modalBarrierColor;
@@ -321,13 +321,13 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
321
321
Color ? textInput,
322
322
Color ? title,
323
323
ChannelColorSwatches ? channelColorSwatches,
324
- Color ? atMentionMarker,
325
324
Color ? colorMessageHeaderIconInteractive,
326
325
Color ? contextMenuCancelBg,
327
326
Color ? contextMenuCancelPressedBg,
328
327
Color ? dmHeaderBg,
329
328
Color ? groupDmConversationIcon,
330
329
Color ? groupDmConversationIconBg,
330
+ Color ? inboxItemIconMarker,
331
331
Color ? loginOrDivider,
332
332
Color ? loginOrDividerText,
333
333
Color ? modalBarrierColor,
@@ -361,13 +361,13 @@ 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,
365
364
colorMessageHeaderIconInteractive: colorMessageHeaderIconInteractive ?? this .colorMessageHeaderIconInteractive,
366
365
contextMenuCancelBg: contextMenuCancelBg ?? this .contextMenuCancelBg,
367
366
contextMenuCancelPressedBg: contextMenuCancelPressedBg ?? this .contextMenuCancelPressedBg,
368
367
dmHeaderBg: dmHeaderBg ?? this .dmHeaderBg,
369
368
groupDmConversationIcon: groupDmConversationIcon ?? this .groupDmConversationIcon,
370
369
groupDmConversationIconBg: groupDmConversationIconBg ?? this .groupDmConversationIconBg,
370
+ inboxItemIconMarker: inboxItemIconMarker ?? this .inboxItemIconMarker,
371
371
loginOrDivider: loginOrDivider ?? this .loginOrDivider,
372
372
loginOrDividerText: loginOrDividerText ?? this .loginOrDividerText,
373
373
modalBarrierColor: modalBarrierColor ?? this .modalBarrierColor,
@@ -408,13 +408,13 @@ 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)! ,
412
411
colorMessageHeaderIconInteractive: Color .lerp (colorMessageHeaderIconInteractive, other.colorMessageHeaderIconInteractive, t)! ,
413
412
contextMenuCancelBg: Color .lerp (contextMenuCancelBg, other.contextMenuCancelBg, t)! ,
414
413
contextMenuCancelPressedBg: Color .lerp (contextMenuCancelPressedBg, other.contextMenuCancelPressedBg, t)! ,
415
414
dmHeaderBg: Color .lerp (dmHeaderBg, other.dmHeaderBg, t)! ,
416
415
groupDmConversationIcon: Color .lerp (groupDmConversationIcon, other.groupDmConversationIcon, t)! ,
417
416
groupDmConversationIconBg: Color .lerp (groupDmConversationIconBg, other.groupDmConversationIconBg, t)! ,
417
+ inboxItemIconMarker: Color .lerp (inboxItemIconMarker, other.inboxItemIconMarker, t)! ,
418
418
loginOrDivider: Color .lerp (loginOrDivider, other.loginOrDivider, t)! ,
419
419
loginOrDividerText: Color .lerp (loginOrDividerText, other.loginOrDividerText, t)! ,
420
420
modalBarrierColor: Color .lerp (modalBarrierColor, other.modalBarrierColor, t)! ,
0 commit comments