@@ -132,6 +132,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
132
132
btnLabelAttLowIntDanger: const Color (0xffc0070a ),
133
133
btnLabelAttMediumIntDanger: const Color (0xffac0508 ),
134
134
composeBoxBg: const Color (0xffffffff ),
135
+ composeBoxBorderBar: Colors .black.withValues (alpha: 0.2 ),
136
+ composeBoxShadow: const Color (0xff242424 ),
135
137
contextMenuCancelText: const Color (0xff222222 ),
136
138
contextMenuItemBg: const Color (0xff6159e1 ),
137
139
contextMenuItemText: const Color (0xff381da7 ),
@@ -182,6 +184,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
182
184
btnLabelAttLowIntDanger: const Color (0xffff8b7c ),
183
185
btnLabelAttMediumIntDanger: const Color (0xffff8b7c ),
184
186
composeBoxBg: const Color (0xff0f0f0f ),
187
+ composeBoxBorderBar: Colors .white.withValues (alpha: 0.1 ),
188
+ composeBoxShadow: const Color (0xff242424 ),
185
189
contextMenuCancelText: const Color (0xffffffff ).withValues (alpha: 0.75 ),
186
190
contextMenuItemBg: const Color (0xff7977fe ),
187
191
contextMenuItemText: const Color (0xff9398fd ),
@@ -239,6 +243,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
239
243
required this .btnLabelAttLowIntDanger,
240
244
required this .btnLabelAttMediumIntDanger,
241
245
required this .composeBoxBg,
246
+ required this .composeBoxBorderBar,
247
+ required this .composeBoxShadow,
242
248
required this .contextMenuCancelText,
243
249
required this .contextMenuItemBg,
244
250
required this .contextMenuItemText,
@@ -297,6 +303,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
297
303
final Color btnLabelAttLowIntDanger;
298
304
final Color btnLabelAttMediumIntDanger;
299
305
final Color composeBoxBg;
306
+ final Color composeBoxBorderBar;
307
+ final Color composeBoxShadow;
300
308
final Color contextMenuCancelText;
301
309
final Color contextMenuItemBg;
302
310
final Color contextMenuItemText;
@@ -350,6 +358,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
350
358
Color ? btnLabelAttLowIntDanger,
351
359
Color ? btnLabelAttMediumIntDanger,
352
360
Color ? composeBoxBg,
361
+ Color ? composeBoxBorderBar,
362
+ Color ? composeBoxShadow,
353
363
Color ? contextMenuCancelText,
354
364
Color ? contextMenuItemBg,
355
365
Color ? contextMenuItemText,
@@ -398,6 +408,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
398
408
btnLabelAttLowIntDanger: btnLabelAttLowIntDanger ?? this .btnLabelAttLowIntDanger,
399
409
btnLabelAttMediumIntDanger: btnLabelAttMediumIntDanger ?? this .btnLabelAttMediumIntDanger,
400
410
composeBoxBg: composeBoxBg ?? this .composeBoxBg,
411
+ composeBoxBorderBar: composeBoxBorderBar ?? this .composeBoxBorderBar,
412
+ composeBoxShadow: composeBoxShadow ?? this .composeBoxShadow,
401
413
contextMenuCancelText: contextMenuCancelText ?? this .contextMenuCancelText,
402
414
contextMenuItemBg: contextMenuItemBg ?? this .contextMenuItemBg,
403
415
contextMenuItemText: contextMenuItemText ?? this .contextMenuItemBg,
@@ -453,6 +465,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
453
465
btnLabelAttLowIntDanger: Color .lerp (btnLabelAttLowIntDanger, other.btnLabelAttLowIntDanger, t)! ,
454
466
btnLabelAttMediumIntDanger: Color .lerp (btnLabelAttMediumIntDanger, other.btnLabelAttMediumIntDanger, t)! ,
455
467
composeBoxBg: Color .lerp (composeBoxBg, other.composeBoxBg, t)! ,
468
+ composeBoxBorderBar: Color .lerp (composeBoxBorderBar, other.composeBoxBorderBar, t)! ,
469
+ composeBoxShadow: Color .lerp (composeBoxShadow, other.composeBoxShadow, t)! ,
456
470
contextMenuCancelText: Color .lerp (contextMenuCancelText, other.contextMenuCancelText, t)! ,
457
471
contextMenuItemBg: Color .lerp (contextMenuItemBg, other.contextMenuItemBg, t)! ,
458
472
contextMenuItemText: Color .lerp (contextMenuItemText, other.contextMenuItemBg, t)! ,
0 commit comments