@@ -165,6 +165,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
165
165
labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 0 ).toColor (),
166
166
labelMenuButton: const Color (0xff222222 ),
167
167
mainBackground: const Color (0xfff0f0f0 ),
168
+ neutralButtonBg: const Color (0xff8c84ae ),
169
+ neutralButtonLabel: const Color (0xff433d5c ),
168
170
textInput: const Color (0xff000000 ),
169
171
title: const Color (0xff1a1a1a ),
170
172
bgSearchInput: const Color (0xffe3e3e3 ),
@@ -226,6 +228,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
226
228
labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 1 ).toColor (),
227
229
labelMenuButton: const Color (0xffffffff ).withValues (alpha: 0.85 ),
228
230
mainBackground: const Color (0xff1d1d1d ),
231
+ neutralButtonBg: const Color (0xffd4d1e0 ),
232
+ neutralButtonLabel: const Color (0xffa9a3c2 ),
229
233
textInput: const Color (0xffffffff ).withValues (alpha: 0.9 ),
230
234
title: const Color (0xffffffff ).withValues (alpha: 0.9 ),
231
235
bgSearchInput: const Color (0xff313131 ),
@@ -295,6 +299,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
295
299
required this .labelEdited,
296
300
required this .labelMenuButton,
297
301
required this .mainBackground,
302
+ required this .neutralButtonBg,
303
+ required this .neutralButtonLabel,
298
304
required this .textInput,
299
305
required this .title,
300
306
required this .bgSearchInput,
@@ -365,6 +371,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
365
371
final Color labelEdited;
366
372
final Color labelMenuButton;
367
373
final Color mainBackground;
374
+ final Color neutralButtonBg;
375
+ final Color neutralButtonLabel;
368
376
final Color textInput;
369
377
final Color title;
370
378
final Color bgSearchInput;
@@ -430,6 +438,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
430
438
Color ? labelEdited,
431
439
Color ? labelMenuButton,
432
440
Color ? mainBackground,
441
+ Color ? neutralButtonBg,
442
+ Color ? neutralButtonLabel,
433
443
Color ? textInput,
434
444
Color ? title,
435
445
Color ? bgSearchInput,
@@ -490,6 +500,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
490
500
labelEdited: labelEdited ?? this .labelEdited,
491
501
labelMenuButton: labelMenuButton ?? this .labelMenuButton,
492
502
mainBackground: mainBackground ?? this .mainBackground,
503
+ neutralButtonBg: neutralButtonBg ?? this .neutralButtonBg,
504
+ neutralButtonLabel: neutralButtonLabel ?? this .neutralButtonLabel,
493
505
textInput: textInput ?? this .textInput,
494
506
title: title ?? this .title,
495
507
bgSearchInput: bgSearchInput ?? this .bgSearchInput,
@@ -557,6 +569,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
557
569
labelEdited: Color .lerp (labelEdited, other.labelEdited, t)! ,
558
570
labelMenuButton: Color .lerp (labelMenuButton, other.labelMenuButton, t)! ,
559
571
mainBackground: Color .lerp (mainBackground, other.mainBackground, t)! ,
572
+ neutralButtonBg: Color .lerp (neutralButtonBg, other.neutralButtonBg, t)! ,
573
+ neutralButtonLabel: Color .lerp (neutralButtonLabel, other.neutralButtonLabel, t)! ,
560
574
textInput: Color .lerp (textInput, other.textInput, t)! ,
561
575
title: Color .lerp (title, other.title, t)! ,
562
576
bgSearchInput: Color .lerp (bgSearchInput, other.bgSearchInput, t)! ,
0 commit comments