@@ -171,6 +171,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
171
171
labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 0 ).toColor (),
172
172
labelMenuButton: const Color (0xff222222 ),
173
173
labelSearchPrompt: const Color (0xff000000 ).withValues (alpha: 0.5 ),
174
+ labelTime: const Color (0x00000000 ).withValues (alpha: 0.49 ),
174
175
listMenuItemBg: const Color (0xffcbcdd6 ),
175
176
listMenuItemIcon: const Color (0xff9194a3 ),
176
177
listMenuItemText: const Color (0xff2d303c ),
@@ -260,6 +261,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
260
261
labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 1 ).toColor (),
261
262
labelMenuButton: const Color (0xffffffff ).withValues (alpha: 0.85 ),
262
263
labelSearchPrompt: const Color (0xffffffff ).withValues (alpha: 0.5 ),
264
+ labelTime: const Color (0xffffffff ).withValues (alpha: 0.50 ),
263
265
listMenuItemBg: const Color (0xff2d303c ),
264
266
listMenuItemIcon: const Color (0xff767988 ),
265
267
listMenuItemText: const Color (0xffcbcdd6 ),
@@ -358,6 +360,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
358
360
required this .labelEdited,
359
361
required this .labelMenuButton,
360
362
required this .labelSearchPrompt,
363
+ required this .labelTime,
361
364
required this .listMenuItemBg,
362
365
required this .listMenuItemIcon,
363
366
required this .listMenuItemText,
@@ -447,6 +450,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
447
450
final Color labelEdited;
448
451
final Color labelMenuButton;
449
452
final Color labelSearchPrompt;
453
+ final Color labelTime;
450
454
final Color listMenuItemBg;
451
455
final Color listMenuItemIcon;
452
456
final Color listMenuItemText;
@@ -531,6 +535,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
531
535
Color ? labelEdited,
532
536
Color ? labelMenuButton,
533
537
Color ? labelSearchPrompt,
538
+ Color ? labelTime,
534
539
Color ? listMenuItemBg,
535
540
Color ? listMenuItemIcon,
536
541
Color ? listMenuItemText,
@@ -610,6 +615,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
610
615
labelEdited: labelEdited ?? this .labelEdited,
611
616
labelMenuButton: labelMenuButton ?? this .labelMenuButton,
612
617
labelSearchPrompt: labelSearchPrompt ?? this .labelSearchPrompt,
618
+ labelTime: labelTime ?? this .labelTime,
613
619
listMenuItemBg: listMenuItemBg ?? this .listMenuItemBg,
614
620
listMenuItemIcon: listMenuItemIcon ?? this .listMenuItemIcon,
615
621
listMenuItemText: listMenuItemText ?? this .listMenuItemText,
@@ -696,6 +702,7 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
696
702
labelEdited: Color .lerp (labelEdited, other.labelEdited, t)! ,
697
703
labelMenuButton: Color .lerp (labelMenuButton, other.labelMenuButton, t)! ,
698
704
labelSearchPrompt: Color .lerp (labelSearchPrompt, other.labelSearchPrompt, t)! ,
705
+ labelTime: Color .lerp (labelTime, other.labelTime, t)! ,
699
706
listMenuItemBg: Color .lerp (listMenuItemBg, other.listMenuItemBg, t)! ,
700
707
listMenuItemIcon: Color .lerp (listMenuItemIcon, other.listMenuItemIcon, t)! ,
701
708
listMenuItemText: Color .lerp (listMenuItemText, other.listMenuItemText, t)! ,
0 commit comments