@@ -40,6 +40,7 @@ class VoicesColorScheme extends ThemeExtension<VoicesColorScheme> {
40
40
final Color ? onSurfaceError016;
41
41
final Color ? iconsForeground;
42
42
final Color ? iconsBackground;
43
+ final Color ? iconsBackgroundVariant;
43
44
final Color ? iconsOnImage;
44
45
final Color ? iconsDisabled;
45
46
final Color ? iconsPrimary;
@@ -98,6 +99,7 @@ class VoicesColorScheme extends ThemeExtension<VoicesColorScheme> {
98
99
required this .onSurfaceError016,
99
100
required this .iconsForeground,
100
101
required this .iconsBackground,
102
+ required this .iconsBackgroundVariant,
101
103
required this .iconsOnImage,
102
104
required this .iconsDisabled,
103
105
required this .iconsPrimary,
@@ -158,6 +160,7 @@ class VoicesColorScheme extends ThemeExtension<VoicesColorScheme> {
158
160
this .onSurfaceError016,
159
161
this .iconsForeground,
160
162
this .iconsBackground,
163
+ this .iconsBackgroundVariant,
161
164
this .iconsOnImage,
162
165
this .iconsDisabled,
163
166
this .iconsPrimary,
@@ -218,6 +221,7 @@ class VoicesColorScheme extends ThemeExtension<VoicesColorScheme> {
218
221
Color ? onSurfaceError016,
219
222
Color ? iconsForeground,
220
223
Color ? iconsBackground,
224
+ Color ? iconsBackgroundVariant,
221
225
Color ? iconsOnImage,
222
226
Color ? iconsDisabled,
223
227
Color ? iconsPrimary,
@@ -283,6 +287,8 @@ class VoicesColorScheme extends ThemeExtension<VoicesColorScheme> {
283
287
onSurfaceError016: onSurfaceError016 ?? this .onSurfaceError016,
284
288
iconsForeground: iconsForeground ?? this .iconsForeground,
285
289
iconsBackground: iconsBackground ?? this .iconsBackground,
290
+ iconsBackgroundVariant:
291
+ iconsBackgroundVariant ?? this .iconsBackgroundVariant,
286
292
iconsOnImage: iconsOnImage ?? this .iconsOnImage,
287
293
iconsDisabled: iconsDisabled ?? this .iconsDisabled,
288
294
iconsPrimary: iconsPrimary ?? this .iconsPrimary,
@@ -400,6 +406,8 @@ class VoicesColorScheme extends ThemeExtension<VoicesColorScheme> {
400
406
Color .lerp (onSurfaceError016, other.onSurfaceError016, t),
401
407
iconsForeground: Color .lerp (iconsForeground, other.iconsForeground, t),
402
408
iconsBackground: Color .lerp (iconsBackground, other.iconsBackground, t),
409
+ iconsBackgroundVariant:
410
+ Color .lerp (iconsBackgroundVariant, other.iconsBackgroundVariant, t),
403
411
iconsOnImage: Color .lerp (iconsOnImage, other.iconsOnImage, t),
404
412
iconsDisabled: Color .lerp (iconsDisabled, other.iconsDisabled, t),
405
413
iconsPrimary: Color .lerp (iconsPrimary, other.iconsPrimary, t),
0 commit comments