@@ -154,6 +154,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
154
154
composeBoxBg: const Color (0xffffffff ),
155
155
contextMenuCancelText: const Color (0xff222222 ),
156
156
contextMenuItemBg: const Color (0xff6159e1 ),
157
+ contextMenuItemIcon: const Color (0xff4f42c9 ),
157
158
contextMenuItemLabel: const Color (0xff242631 ),
158
159
contextMenuItemMeta: const Color (0xff626573 ),
159
160
contextMenuItemText: const Color (0xff381da7 ),
@@ -233,6 +234,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
233
234
composeBoxBg: const Color (0xff0f0f0f ),
234
235
contextMenuCancelText: const Color (0xffffffff ).withValues (alpha: 0.75 ),
235
236
contextMenuItemBg: const Color (0xff7977fe ),
237
+ contextMenuItemIcon: const Color (0xff9398fd ),
236
238
contextMenuItemLabel: const Color (0xffdfe1e8 ),
237
239
contextMenuItemMeta: const Color (0xff9194a3 ),
238
240
contextMenuItemText: const Color (0xff9398fd ),
@@ -320,6 +322,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
320
322
required this .composeBoxBg,
321
323
required this .contextMenuCancelText,
322
324
required this .contextMenuItemBg,
325
+ required this .contextMenuItemIcon,
323
326
required this .contextMenuItemLabel,
324
327
required this .contextMenuItemMeta,
325
328
required this .contextMenuItemText,
@@ -404,6 +407,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
404
407
final Color composeBoxBg;
405
408
final Color contextMenuCancelText;
406
409
final Color contextMenuItemBg;
410
+ final Color contextMenuItemIcon;
407
411
final Color contextMenuItemLabel;
408
412
final Color contextMenuItemMeta;
409
413
final Color contextMenuItemText;
@@ -483,6 +487,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
483
487
Color ? composeBoxBg,
484
488
Color ? contextMenuCancelText,
485
489
Color ? contextMenuItemBg,
490
+ Color ? contextMenuItemIcon,
486
491
Color ? contextMenuItemLabel,
487
492
Color ? contextMenuItemMeta,
488
493
Color ? contextMenuItemText,
@@ -557,6 +562,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
557
562
composeBoxBg: composeBoxBg ?? this .composeBoxBg,
558
563
contextMenuCancelText: contextMenuCancelText ?? this .contextMenuCancelText,
559
564
contextMenuItemBg: contextMenuItemBg ?? this .contextMenuItemBg,
565
+ contextMenuItemIcon: contextMenuItemIcon ?? this .contextMenuItemIcon,
560
566
contextMenuItemLabel: contextMenuItemLabel ?? this .contextMenuItemLabel,
561
567
contextMenuItemMeta: contextMenuItemMeta ?? this .contextMenuItemMeta,
562
568
contextMenuItemText: contextMenuItemText ?? this .contextMenuItemText,
@@ -638,6 +644,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
638
644
composeBoxBg: Color .lerp (composeBoxBg, other.composeBoxBg, t)! ,
639
645
contextMenuCancelText: Color .lerp (contextMenuCancelText, other.contextMenuCancelText, t)! ,
640
646
contextMenuItemBg: Color .lerp (contextMenuItemBg, other.contextMenuItemBg, t)! ,
647
+ contextMenuItemIcon: Color .lerp (contextMenuItemIcon, other.contextMenuItemIcon, t)! ,
641
648
contextMenuItemLabel: Color .lerp (contextMenuItemLabel, other.contextMenuItemLabel, t)! ,
642
649
contextMenuItemMeta: Color .lerp (contextMenuItemMeta, other.contextMenuItemMeta, t)! ,
643
650
contextMenuItemText: Color .lerp (contextMenuItemText, other.contextMenuItemText, t)! ,
0 commit comments