@@ -165,6 +165,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
165165 labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 0 ).toColor (),
166166 labelMenuButton: const Color (0xff222222 ),
167167 mainBackground: const Color (0xfff0f0f0 ),
168+ neutralButtonBg: const Color (0xff8c84ae ),
169+ neutralButtonLabel: const Color (0xff433d5c ),
168170 textInput: const Color (0xff000000 ),
169171 title: const Color (0xff1a1a1a ),
170172 bgSearchInput: const Color (0xffe3e3e3 ),
@@ -226,6 +228,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
226228 labelEdited: const HSLColor .fromAHSL (0.35 , 0 , 0 , 1 ).toColor (),
227229 labelMenuButton: const Color (0xffffffff ).withValues (alpha: 0.85 ),
228230 mainBackground: const Color (0xff1d1d1d ),
231+ neutralButtonBg: const Color (0xffd4d1e0 ),
232+ neutralButtonLabel: const Color (0xffa9a3c2 ),
229233 textInput: const Color (0xffffffff ).withValues (alpha: 0.9 ),
230234 title: const Color (0xffffffff ).withValues (alpha: 0.9 ),
231235 bgSearchInput: const Color (0xff313131 ),
@@ -295,6 +299,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
295299 required this .labelEdited,
296300 required this .labelMenuButton,
297301 required this .mainBackground,
302+ required this .neutralButtonBg,
303+ required this .neutralButtonLabel,
298304 required this .textInput,
299305 required this .title,
300306 required this .bgSearchInput,
@@ -365,6 +371,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
365371 final Color labelEdited;
366372 final Color labelMenuButton;
367373 final Color mainBackground;
374+ final Color neutralButtonBg;
375+ final Color neutralButtonLabel;
368376 final Color textInput;
369377 final Color title;
370378 final Color bgSearchInput;
@@ -430,6 +438,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
430438 Color ? labelEdited,
431439 Color ? labelMenuButton,
432440 Color ? mainBackground,
441+ Color ? neutralButtonBg,
442+ Color ? neutralButtonLabel,
433443 Color ? textInput,
434444 Color ? title,
435445 Color ? bgSearchInput,
@@ -490,6 +500,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
490500 labelEdited: labelEdited ?? this .labelEdited,
491501 labelMenuButton: labelMenuButton ?? this .labelMenuButton,
492502 mainBackground: mainBackground ?? this .mainBackground,
503+ neutralButtonBg: neutralButtonBg ?? this .neutralButtonBg,
504+ neutralButtonLabel: neutralButtonLabel ?? this .neutralButtonLabel,
493505 textInput: textInput ?? this .textInput,
494506 title: title ?? this .title,
495507 bgSearchInput: bgSearchInput ?? this .bgSearchInput,
@@ -557,6 +569,8 @@ class DesignVariables extends ThemeExtension<DesignVariables> {
557569 labelEdited: Color .lerp (labelEdited, other.labelEdited, t)! ,
558570 labelMenuButton: Color .lerp (labelMenuButton, other.labelMenuButton, t)! ,
559571 mainBackground: Color .lerp (mainBackground, other.mainBackground, t)! ,
572+ neutralButtonBg: Color .lerp (neutralButtonBg, other.neutralButtonBg, t)! ,
573+ neutralButtonLabel: Color .lerp (neutralButtonLabel, other.neutralButtonLabel, t)! ,
560574 textInput: Color .lerp (textInput, other.textInput, t)! ,
561575 title: Color .lerp (title, other.title, t)! ,
562576 bgSearchInput: Color .lerp (bgSearchInput, other.bgSearchInput, t)! ,
0 commit comments