@@ -138,8 +138,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
138
138
bgTopBar: const Color (0xfff5f5f5 ),
139
139
borderBar: Colors .black.withValues (alpha: 0.2 ),
140
140
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 ),
141
146
btnLabelAttLowIntDanger: const Color (0xffc0070a ),
142
147
btnLabelAttMediumIntDanger: const Color (0xffac0508 ),
148
+ btnLabelAttMediumIntInfo: const Color (0xff1027a6 ),
149
+ btnShadowAttMed: const Color (0xff000000 ).withValues (alpha: 0.20 ),
143
150
composeBoxBg: const Color (0xffffffff ),
144
151
contextMenuCancelText: const Color (0xff222222 ),
145
152
contextMenuItemBg: const Color (0xff6159e1 ),
@@ -188,8 +195,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
188
195
bgTopBar: const Color (0xff242424 ),
189
196
borderBar: const Color (0xffffffff ).withValues (alpha: 0.1 ),
190
197
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 ),
191
203
btnLabelAttLowIntDanger: const Color (0xffff8b7c ),
192
204
btnLabelAttMediumIntDanger: const Color (0xffff8b7c ),
205
+ btnLabelAttMediumIntInfo: const Color (0xff97b6fe ),
206
+ btnShadowAttMed: const Color (0xffffffff ).withValues (alpha: 0.21 ),
193
207
composeBoxBg: const Color (0xff0f0f0f ),
194
208
contextMenuCancelText: const Color (0xffffffff ).withValues (alpha: 0.75 ),
195
209
contextMenuItemBg: const Color (0xff7977fe ),
@@ -246,8 +260,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
246
260
required this .bgTopBar,
247
261
required this .borderBar,
248
262
required this .borderMenuButtonSelected,
263
+ required this .btnBgAttHighIntInfoActive,
264
+ required this .btnBgAttHighIntInfoNormal,
265
+ required this .btnBgAttMediumIntInfoActive,
266
+ required this .btnBgAttMediumIntInfoNormal,
267
+ required this .btnLabelAttHigh,
249
268
required this .btnLabelAttLowIntDanger,
250
269
required this .btnLabelAttMediumIntDanger,
270
+ required this .btnLabelAttMediumIntInfo,
271
+ required this .btnShadowAttMed,
251
272
required this .composeBoxBg,
252
273
required this .contextMenuCancelText,
253
274
required this .contextMenuItemBg,
@@ -305,8 +326,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
305
326
final Color bgTopBar;
306
327
final Color borderBar;
307
328
final Color borderMenuButtonSelected;
329
+ final Color btnBgAttHighIntInfoActive;
330
+ final Color btnBgAttHighIntInfoNormal;
331
+ final Color btnBgAttMediumIntInfoActive;
332
+ final Color btnBgAttMediumIntInfoNormal;
333
+ final Color btnLabelAttHigh;
308
334
final Color btnLabelAttLowIntDanger;
309
335
final Color btnLabelAttMediumIntDanger;
336
+ final Color btnLabelAttMediumIntInfo;
337
+ final Color btnShadowAttMed;
310
338
final Color composeBoxBg;
311
339
final Color contextMenuCancelText;
312
340
final Color contextMenuItemBg;
@@ -359,8 +387,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
359
387
Color ? bgTopBar,
360
388
Color ? borderBar,
361
389
Color ? borderMenuButtonSelected,
390
+ Color ? btnBgAttHighIntInfoActive,
391
+ Color ? btnBgAttHighIntInfoNormal,
392
+ Color ? btnBgAttMediumIntInfoActive,
393
+ Color ? btnBgAttMediumIntInfoNormal,
394
+ Color ? btnLabelAttHigh,
362
395
Color ? btnLabelAttLowIntDanger,
363
396
Color ? btnLabelAttMediumIntDanger,
397
+ Color ? btnLabelAttMediumIntInfo,
398
+ Color ? btnShadowAttMed,
364
399
Color ? composeBoxBg,
365
400
Color ? contextMenuCancelText,
366
401
Color ? contextMenuItemBg,
@@ -408,8 +443,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
408
443
bgTopBar: bgTopBar ?? this .bgTopBar,
409
444
borderBar: borderBar ?? this .borderBar,
410
445
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,
411
451
btnLabelAttLowIntDanger: btnLabelAttLowIntDanger ?? this .btnLabelAttLowIntDanger,
412
452
btnLabelAttMediumIntDanger: btnLabelAttMediumIntDanger ?? this .btnLabelAttMediumIntDanger,
453
+ btnLabelAttMediumIntInfo: btnLabelAttMediumIntInfo ?? this .btnLabelAttMediumIntInfo,
454
+ btnShadowAttMed: btnShadowAttMed ?? this .btnShadowAttMed,
413
455
composeBoxBg: composeBoxBg ?? this .composeBoxBg,
414
456
contextMenuCancelText: contextMenuCancelText ?? this .contextMenuCancelText,
415
457
contextMenuItemBg: contextMenuItemBg ?? this .contextMenuItemBg,
@@ -464,8 +506,15 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
464
506
bgTopBar: Color .lerp (bgTopBar, other.bgTopBar, t)! ,
465
507
borderBar: Color .lerp (borderBar, other.borderBar, t)! ,
466
508
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)! ,
467
514
btnLabelAttLowIntDanger: Color .lerp (btnLabelAttLowIntDanger, other.btnLabelAttLowIntDanger, t)! ,
468
515
btnLabelAttMediumIntDanger: Color .lerp (btnLabelAttMediumIntDanger, other.btnLabelAttMediumIntDanger, t)! ,
516
+ btnLabelAttMediumIntInfo: Color .lerp (btnLabelAttMediumIntInfo, other.btnLabelAttMediumIntInfo, t)! ,
517
+ btnShadowAttMed: Color .lerp (btnShadowAttMed, other.btnShadowAttMed, t)! ,
469
518
composeBoxBg: Color .lerp (composeBoxBg, other.composeBoxBg, t)! ,
470
519
contextMenuCancelText: Color .lerp (contextMenuCancelText, other.contextMenuCancelText, t)! ,
471
520
contextMenuItemBg: Color .lerp (contextMenuItemBg, other.contextMenuItemBg, t)! ,
0 commit comments