@@ -121,6 +121,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
121
121
contextMenuCancelText: const Color (0xff222222 ),
122
122
contextMenuItemBg: const Color (0xff6159e1 ),
123
123
contextMenuItemText: const Color (0xff381da7 ),
124
+ contextMenuItemLabel: const Color (0xff242631 ),
125
+ contextMenuItemMeta: const Color (0xff626573 ),
126
+ editorButtonPressedBg: const Color (0xff000000 ).withValues (alpha: 0.06 ),
124
127
icon: const Color (0xff666699 ),
125
128
labelCounterUnread: const Color (0xff222222 ),
126
129
labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 0 ).toColor (),
@@ -157,6 +160,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
157
160
contextMenuCancelText: const Color (0xffffffff ).withValues (alpha: 0.75 ),
158
161
contextMenuItemBg: const Color (0xff7977fe ),
159
162
contextMenuItemText: const Color (0xff9398fd ),
163
+ contextMenuItemLabel: const Color (0xffdfe1e8 ),
164
+ contextMenuItemMeta: const Color (0xff9194a3 ),
165
+ editorButtonPressedBg: const Color (0xffffffff ).withValues (alpha: 0.06 ),
160
166
icon: const Color (0xff7070c2 ),
161
167
labelCounterUnread: const Color (0xffffffff ).withValues (alpha: 0.7 ),
162
168
labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 1 ).toColor (),
@@ -200,6 +206,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
200
206
required this .contextMenuCancelText,
201
207
required this .contextMenuItemBg,
202
208
required this .contextMenuItemText,
209
+ required this .contextMenuItemLabel,
210
+ required this .contextMenuItemMeta,
211
+ required this .editorButtonPressedBg,
203
212
required this .icon,
204
213
required this .labelCounterUnread,
205
214
required this .labelEdited,
@@ -244,6 +253,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
244
253
final Color contextMenuCancelText;
245
254
final Color contextMenuItemBg;
246
255
final Color contextMenuItemText;
256
+ final Color contextMenuItemLabel;
257
+ final Color contextMenuItemMeta;
258
+ final Color editorButtonPressedBg;
247
259
final Color icon;
248
260
final Color labelCounterUnread;
249
261
final Color labelEdited;
@@ -283,6 +295,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
283
295
Color ? contextMenuCancelText,
284
296
Color ? contextMenuItemBg,
285
297
Color ? contextMenuItemText,
298
+ Color ? contextMenuItemLabel,
299
+ Color ? contextMenuItemMeta,
300
+ Color ? editorButtonPressedBg,
286
301
Color ? icon,
287
302
Color ? labelCounterUnread,
288
303
Color ? labelEdited,
@@ -317,6 +332,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
317
332
contextMenuCancelText: contextMenuCancelText ?? this .contextMenuCancelText,
318
333
contextMenuItemBg: contextMenuItemBg ?? this .contextMenuItemBg,
319
334
contextMenuItemText: contextMenuItemText ?? this .contextMenuItemBg,
335
+ contextMenuItemLabel: contextMenuItemLabel ?? this .contextMenuItemLabel,
336
+ contextMenuItemMeta: contextMenuItemMeta ?? this .contextMenuItemMeta,
337
+ editorButtonPressedBg: editorButtonPressedBg ?? this .editorButtonPressedBg,
320
338
icon: icon ?? this .icon,
321
339
labelCounterUnread: labelCounterUnread ?? this .labelCounterUnread,
322
340
labelEdited: labelEdited ?? this .labelEdited,
@@ -358,6 +376,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
358
376
contextMenuCancelText: Color .lerp (contextMenuCancelText, other.contextMenuCancelText, t)! ,
359
377
contextMenuItemBg: Color .lerp (contextMenuItemBg, other.contextMenuItemBg, t)! ,
360
378
contextMenuItemText: Color .lerp (contextMenuItemText, other.contextMenuItemBg, t)! ,
379
+ contextMenuItemMeta: Color .lerp (contextMenuItemMeta, other.contextMenuItemMeta, t)! ,
380
+ contextMenuItemLabel: Color .lerp (contextMenuItemLabel, other.contextMenuItemLabel, t)! ,
381
+ editorButtonPressedBg: Color .lerp (editorButtonPressedBg, other.editorButtonPressedBg, t)! ,
361
382
icon: Color .lerp (icon, other.icon, t)! ,
362
383
labelCounterUnread: Color .lerp (labelCounterUnread, other.labelCounterUnread, t)! ,
363
384
labelEdited: Color .lerp (labelEdited, other.labelEdited, t)! ,
0 commit comments