@@ -110,6 +110,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
110
110
bgCounterUnread: const Color (0xff666699 ).withValues (alpha: 0.15 ),
111
111
bgTopBar: const Color (0xfff5f5f5 ),
112
112
borderBar: const Color (0x33000000 ),
113
+ contextMenuItemLabel: const Color (0xff242631 ),
114
+ contextMenuItemMeta: const Color (0xff626573 ),
115
+ editorButtonPressedBg: const Color (0xff000000 ).withValues (alpha: 0.06 ),
113
116
icon: const Color (0xff666699 ),
114
117
labelCounterUnread: const Color (0xff222222 ),
115
118
labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 0 ).toColor (),
@@ -139,6 +142,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
139
142
bgCounterUnread: const Color (0xff666699 ).withValues (alpha: 0.37 ),
140
143
bgTopBar: const Color (0xff242424 ),
141
144
borderBar: Colors .black.withValues (alpha: 0.41 ),
145
+ contextMenuItemLabel: const Color (0xffdfe1e8 ),
146
+ contextMenuItemMeta: const Color (0xff9194a3 ),
147
+ editorButtonPressedBg: const Color (0xffffffff ).withValues (alpha: 0.06 ),
142
148
icon: const Color (0xff7070c2 ),
143
149
labelCounterUnread: const Color (0xffffffff ).withValues (alpha: 0.7 ),
144
150
labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 1 ).toColor (),
@@ -174,6 +180,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
174
180
required this .bgCounterUnread,
175
181
required this .bgTopBar,
176
182
required this .borderBar,
183
+ required this .contextMenuItemLabel,
184
+ required this .contextMenuItemMeta,
185
+ required this .editorButtonPressedBg,
177
186
required this .icon,
178
187
required this .labelCounterUnread,
179
188
required this .labelEdited,
@@ -211,6 +220,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
211
220
final Color bgCounterUnread;
212
221
final Color bgTopBar;
213
222
final Color borderBar;
223
+ final Color contextMenuItemLabel;
224
+ final Color contextMenuItemMeta;
225
+ final Color editorButtonPressedBg;
214
226
final Color icon;
215
227
final Color labelCounterUnread;
216
228
final Color labelEdited;
@@ -243,6 +255,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
243
255
Color ? bgCounterUnread,
244
256
Color ? bgTopBar,
245
257
Color ? borderBar,
258
+ Color ? contextMenuItemLabel,
259
+ Color ? contextMenuItemMeta,
260
+ Color ? editorButtonPressedBg,
246
261
Color ? icon,
247
262
Color ? labelCounterUnread,
248
263
Color ? labelEdited,
@@ -270,6 +285,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
270
285
bgCounterUnread: bgCounterUnread ?? this .bgCounterUnread,
271
286
bgTopBar: bgTopBar ?? this .bgTopBar,
272
287
borderBar: borderBar ?? this .borderBar,
288
+ contextMenuItemLabel: contextMenuItemLabel ?? this .contextMenuItemLabel,
289
+ contextMenuItemMeta: contextMenuItemMeta ?? this .contextMenuItemMeta,
290
+ editorButtonPressedBg: editorButtonPressedBg ?? this .editorButtonPressedBg,
273
291
icon: icon ?? this .icon,
274
292
labelCounterUnread: labelCounterUnread ?? this .labelCounterUnread,
275
293
labelEdited: labelEdited ?? this .labelEdited,
@@ -304,6 +322,9 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
304
322
bgCounterUnread: Color .lerp (bgCounterUnread, other.bgCounterUnread, t)! ,
305
323
bgTopBar: Color .lerp (bgTopBar, other.bgTopBar, t)! ,
306
324
borderBar: Color .lerp (borderBar, other.borderBar, t)! ,
325
+ contextMenuItemMeta: Color .lerp (contextMenuItemMeta, other.contextMenuItemMeta, t)! ,
326
+ contextMenuItemLabel: Color .lerp (contextMenuItemLabel, other.contextMenuItemLabel, t)! ,
327
+ editorButtonPressedBg: Color .lerp (editorButtonPressedBg, other.editorButtonPressedBg, t)! ,
307
328
icon: Color .lerp (icon, other.icon, t)! ,
308
329
labelCounterUnread: Color .lerp (labelCounterUnread, other.labelCounterUnread, t)! ,
309
330
labelEdited: Color .lerp (labelEdited, other.labelEdited, t)! ,
0 commit comments