@@ -138,8 +138,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
138138 bgTopBar: const Color (0xfff5f5f5 ),
139139 borderBar: Colors .black.withValues (alpha: 0.2 ),
140140 borderMenuButtonSelected: Colors .black.withValues (alpha: 0.2 ),
141+ btnBgAttHighIntInfoActive: const Color (0xff1e41d3 ),
142+ btnBgAttHighIntInfoNormal: const Color (0xff3c6bff ),
143+ btnBgAttMediumIntInfoActive: const Color (0xff3c6bff ).withValues (alpha: 0.22 ),
144+ btnBgAttMediumIntInfoNormal: const Color (0xff3c6bff ).withValues (alpha: 0.12 ),
145+ btnLabelAttHigh: const Color (0xffffffff ),
141146 btnLabelAttLowIntDanger: const Color (0xffc0070a ),
142147 btnLabelAttMediumIntDanger: const Color (0xffac0508 ),
148+ btnLabelAttMediumIntInfo: const Color (0xff1027a6 ),
149+ btnShadowAttMed: const Color (0xff000000 ).withValues (alpha: 0.20 ),
143150 composeBoxBg: const Color (0xffffffff ),
144151 contextMenuCancelText: const Color (0xff222222 ),
145152 contextMenuItemBg: const Color (0xff6159e1 ),
@@ -188,8 +195,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
188195 bgTopBar: const Color (0xff242424 ),
189196 borderBar: const Color (0xffffffff ).withValues (alpha: 0.1 ),
190197 borderMenuButtonSelected: Colors .white.withValues (alpha: 0.1 ),
198+ btnBgAttHighIntInfoActive: const Color (0xff1e41d3 ),
199+ btnBgAttHighIntInfoNormal: const Color (0xff1e41d3 ),
200+ btnBgAttMediumIntInfoActive: const Color (0xff97b6fe ).withValues (alpha: 0.12 ),
201+ btnBgAttMediumIntInfoNormal: const Color (0xff97b6fe ).withValues (alpha: 0.12 ),
202+ btnLabelAttHigh: const Color (0xffffffff ).withValues (alpha: 0.85 ),
191203 btnLabelAttLowIntDanger: const Color (0xffff8b7c ),
192204 btnLabelAttMediumIntDanger: const Color (0xffff8b7c ),
205+ btnLabelAttMediumIntInfo: const Color (0xff97b6fe ),
206+ btnShadowAttMed: const Color (0xffffffff ).withValues (alpha: 0.21 ),
193207 composeBoxBg: const Color (0xff0f0f0f ),
194208 contextMenuCancelText: const Color (0xffffffff ).withValues (alpha: 0.75 ),
195209 contextMenuItemBg: const Color (0xff7977fe ),
@@ -246,8 +260,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
246260 required this .bgTopBar,
247261 required this .borderBar,
248262 required this .borderMenuButtonSelected,
263+ required this .btnBgAttHighIntInfoActive,
264+ required this .btnBgAttHighIntInfoNormal,
265+ required this .btnBgAttMediumIntInfoActive,
266+ required this .btnBgAttMediumIntInfoNormal,
267+ required this .btnLabelAttHigh,
249268 required this .btnLabelAttLowIntDanger,
250269 required this .btnLabelAttMediumIntDanger,
270+ required this .btnLabelAttMediumIntInfo,
271+ required this .btnShadowAttMed,
251272 required this .composeBoxBg,
252273 required this .contextMenuCancelText,
253274 required this .contextMenuItemBg,
@@ -305,8 +326,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
305326 final Color bgTopBar;
306327 final Color borderBar;
307328 final Color borderMenuButtonSelected;
329+ final Color btnBgAttHighIntInfoActive;
330+ final Color btnBgAttHighIntInfoNormal;
331+ final Color btnBgAttMediumIntInfoActive;
332+ final Color btnBgAttMediumIntInfoNormal;
333+ final Color btnLabelAttHigh;
308334 final Color btnLabelAttLowIntDanger;
309335 final Color btnLabelAttMediumIntDanger;
336+ final Color btnLabelAttMediumIntInfo;
337+ final Color btnShadowAttMed;
310338 final Color composeBoxBg;
311339 final Color contextMenuCancelText;
312340 final Color contextMenuItemBg;
@@ -359,8 +387,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
359387 Color ? bgTopBar,
360388 Color ? borderBar,
361389 Color ? borderMenuButtonSelected,
390+ Color ? btnBgAttHighIntInfoActive,
391+ Color ? btnBgAttHighIntInfoNormal,
392+ Color ? btnBgAttMediumIntInfoActive,
393+ Color ? btnBgAttMediumIntInfoNormal,
394+ Color ? btnLabelAttHigh,
362395 Color ? btnLabelAttLowIntDanger,
363396 Color ? btnLabelAttMediumIntDanger,
397+ Color ? btnLabelAttMediumIntInfo,
398+ Color ? btnShadowAttMed,
364399 Color ? composeBoxBg,
365400 Color ? contextMenuCancelText,
366401 Color ? contextMenuItemBg,
@@ -408,8 +443,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
408443 bgTopBar: bgTopBar ?? this .bgTopBar,
409444 borderBar: borderBar ?? this .borderBar,
410445 borderMenuButtonSelected: borderMenuButtonSelected ?? this .borderMenuButtonSelected,
446+ btnBgAttHighIntInfoActive: btnBgAttHighIntInfoActive ?? this .btnBgAttHighIntInfoActive,
447+ btnBgAttHighIntInfoNormal: btnBgAttHighIntInfoNormal ?? this .btnBgAttHighIntInfoNormal,
448+ btnBgAttMediumIntInfoActive: btnBgAttMediumIntInfoActive ?? this .btnBgAttMediumIntInfoActive,
449+ btnBgAttMediumIntInfoNormal: btnBgAttMediumIntInfoNormal ?? this .btnBgAttMediumIntInfoNormal,
450+ btnLabelAttHigh: btnLabelAttHigh ?? this .btnLabelAttHigh,
411451 btnLabelAttLowIntDanger: btnLabelAttLowIntDanger ?? this .btnLabelAttLowIntDanger,
412452 btnLabelAttMediumIntDanger: btnLabelAttMediumIntDanger ?? this .btnLabelAttMediumIntDanger,
453+ btnLabelAttMediumIntInfo: btnLabelAttMediumIntInfo ?? this .btnLabelAttMediumIntInfo,
454+ btnShadowAttMed: btnShadowAttMed ?? this .btnShadowAttMed,
413455 composeBoxBg: composeBoxBg ?? this .composeBoxBg,
414456 contextMenuCancelText: contextMenuCancelText ?? this .contextMenuCancelText,
415457 contextMenuItemBg: contextMenuItemBg ?? this .contextMenuItemBg,
@@ -464,8 +506,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
464506 bgTopBar: Color .lerp (bgTopBar, other.bgTopBar, t)! ,
465507 borderBar: Color .lerp (borderBar, other.borderBar, t)! ,
466508 borderMenuButtonSelected: Color .lerp (borderMenuButtonSelected, other.borderMenuButtonSelected, t)! ,
509+ btnBgAttHighIntInfoActive: Color .lerp (btnBgAttHighIntInfoActive, other.btnBgAttHighIntInfoActive, t)! ,
510+ btnBgAttHighIntInfoNormal: Color .lerp (btnBgAttHighIntInfoNormal, other.btnBgAttHighIntInfoNormal, t)! ,
511+ btnBgAttMediumIntInfoActive: Color .lerp (btnBgAttMediumIntInfoActive, other.btnBgAttMediumIntInfoActive, t)! ,
512+ btnBgAttMediumIntInfoNormal: Color .lerp (btnBgAttMediumIntInfoNormal, other.btnBgAttMediumIntInfoNormal, t)! ,
513+ btnLabelAttHigh: Color .lerp (btnLabelAttHigh, other.btnLabelAttHigh, t)! ,
467514 btnLabelAttLowIntDanger: Color .lerp (btnLabelAttLowIntDanger, other.btnLabelAttLowIntDanger, t)! ,
468515 btnLabelAttMediumIntDanger: Color .lerp (btnLabelAttMediumIntDanger, other.btnLabelAttMediumIntDanger, t)! ,
516+ btnLabelAttMediumIntInfo: Color .lerp (btnLabelAttMediumIntInfo, other.btnLabelAttMediumIntInfo, t)! ,
517+ btnShadowAttMed: Color .lerp (btnShadowAttMed, other.btnShadowAttMed, t)! ,
469518 composeBoxBg: Color .lerp (composeBoxBg, other.composeBoxBg, t)! ,
470519 contextMenuCancelText: Color .lerp (contextMenuCancelText, other.contextMenuCancelText, t)! ,
471520 contextMenuItemBg: Color .lerp (contextMenuItemBg, other.contextMenuItemBg, t)! ,
0 commit comments