@@ -132,6 +132,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
132132      btnLabelAttLowIntDanger:  const  Color (0xffc0070a ),
133133      btnLabelAttMediumIntDanger:  const  Color (0xffac0508 ),
134134      composeBoxBg:  const  Color (0xffffffff ),
135+       composeBoxBorderBar:  Colors .black.withValues (alpha:  0.2 ),
136+       composeBoxShadow:  const  Color (0xff242424 ),
135137      contextMenuCancelText:  const  Color (0xff222222 ),
136138      contextMenuItemBg:  const  Color (0xff6159e1 ),
137139      contextMenuItemText:  const  Color (0xff381da7 ),
@@ -182,6 +184,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
182184      btnLabelAttLowIntDanger:  const  Color (0xffff8b7c ),
183185      btnLabelAttMediumIntDanger:  const  Color (0xffff8b7c ),
184186      composeBoxBg:  const  Color (0xff0f0f0f ),
187+       composeBoxBorderBar:  Colors .white.withValues (alpha:  0.1 ),
188+       composeBoxShadow:  const  Color (0xff242424 ),
185189      contextMenuCancelText:  const  Color (0xffffffff ).withValues (alpha:  0.75 ),
186190      contextMenuItemBg:  const  Color (0xff7977fe ),
187191      contextMenuItemText:  const  Color (0xff9398fd ),
@@ -239,6 +243,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
239243    required  this .btnLabelAttLowIntDanger,
240244    required  this .btnLabelAttMediumIntDanger,
241245    required  this .composeBoxBg,
246+     required  this .composeBoxBorderBar,
247+     required  this .composeBoxShadow,
242248    required  this .contextMenuCancelText,
243249    required  this .contextMenuItemBg,
244250    required  this .contextMenuItemText,
@@ -297,6 +303,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
297303  final  Color  btnLabelAttLowIntDanger;
298304  final  Color  btnLabelAttMediumIntDanger;
299305  final  Color  composeBoxBg;
306+   final  Color  composeBoxBorderBar;
307+   final  Color  composeBoxShadow;
300308  final  Color  contextMenuCancelText;
301309  final  Color  contextMenuItemBg;
302310  final  Color  contextMenuItemText;
@@ -350,6 +358,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
350358    Color ?  btnLabelAttLowIntDanger,
351359    Color ?  btnLabelAttMediumIntDanger,
352360    Color ?  composeBoxBg,
361+     Color ?  composeBoxBorderBar,
362+     Color ?  composeBoxShadow,
353363    Color ?  contextMenuCancelText,
354364    Color ?  contextMenuItemBg,
355365    Color ?  contextMenuItemText,
@@ -398,6 +408,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
398408      btnLabelAttLowIntDanger:  btnLabelAttLowIntDanger ??  this .btnLabelAttLowIntDanger,
399409      btnLabelAttMediumIntDanger:  btnLabelAttMediumIntDanger ??  this .btnLabelAttMediumIntDanger,
400410      composeBoxBg:  composeBoxBg ??  this .composeBoxBg,
411+       composeBoxBorderBar:  composeBoxBorderBar ??  this .composeBoxBorderBar,
412+       composeBoxShadow:  composeBoxShadow ??  this .composeBoxShadow,
401413      contextMenuCancelText:  contextMenuCancelText ??  this .contextMenuCancelText,
402414      contextMenuItemBg:  contextMenuItemBg ??  this .contextMenuItemBg,
403415      contextMenuItemText:  contextMenuItemText ??  this .contextMenuItemBg,
@@ -453,6 +465,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
453465      btnLabelAttLowIntDanger:  Color .lerp (btnLabelAttLowIntDanger, other.btnLabelAttLowIntDanger, t)! ,
454466      btnLabelAttMediumIntDanger:  Color .lerp (btnLabelAttMediumIntDanger, other.btnLabelAttMediumIntDanger, t)! ,
455467      composeBoxBg:  Color .lerp (composeBoxBg, other.composeBoxBg, t)! ,
468+       composeBoxBorderBar:  Color .lerp (composeBoxBorderBar, other.composeBoxBorderBar, t)! ,
469+       composeBoxShadow:  Color .lerp (composeBoxShadow, other.composeBoxShadow, t)! ,
456470      contextMenuCancelText:  Color .lerp (contextMenuCancelText, other.contextMenuCancelText, t)! ,
457471      contextMenuItemBg:  Color .lerp (contextMenuItemBg, other.contextMenuItemBg, t)! ,
458472      contextMenuItemText:  Color .lerp (contextMenuItemText, other.contextMenuItemBg, t)! ,
0 commit comments