@@ -38,8 +38,6 @@ class AppColorsTheme extends ThemeExtension<AppColorsTheme> {
3838 final Color buttonSuccess;
3939 final Color buttonNeutral;
4040 final List <Color > buttonPrimary;
41- final Color skeletonBase;
42- final Color skeletonHighlight;
4341 final Color accountTagGuardian;
4442 final Color accountTagEntrusted;
4543 final Color accountTagHighSecurity;
@@ -78,8 +76,6 @@ class AppColorsTheme extends ThemeExtension<AppColorsTheme> {
7876 required this .buttonSuccess,
7977 required this .buttonNeutral,
8078 required this .buttonPrimary,
81- required this .skeletonBase,
82- required this .skeletonHighlight,
8379 required this .accountTagGuardian,
8480 required this .accountTagEntrusted,
8581 required this .accountTagHighSecurity,
@@ -120,8 +116,6 @@ class AppColorsTheme extends ThemeExtension<AppColorsTheme> {
120116 buttonSuccess: const Color (0xFF1FFFA7 ),
121117 buttonNeutral: const Color (0xFFF4F6F9 ),
122118 buttonPrimary: const [Color (0xFF0000FF ), Color (0xFFED4CCE )],
123- skeletonBase: const Color (0xFF3D3C44 ),
124- skeletonHighlight: const Color (0xFF5A5A5A ),
125119 accountTagGuardian: const Color (0xFF9747FF ),
126120 accountTagEntrusted: const Color (0xFFFFD541 ),
127121 accountTagHighSecurity: const Color (0xFF4CEDE7 ),
@@ -162,8 +156,6 @@ class AppColorsTheme extends ThemeExtension<AppColorsTheme> {
162156 buttonSuccess: const Color (0xFF1FFFA7 ),
163157 buttonNeutral: const Color (0xFFF4F6F9 ),
164158 buttonPrimary: const [Color (0xFF0000FF ), Color (0xFFED4CCE )],
165- skeletonBase: const Color (0xFF3D3C44 ),
166- skeletonHighlight: const Color (0xFF5A5A5A ),
167159 accountTagGuardian: const Color (0xFF9747FF ),
168160 accountTagEntrusted: const Color (0xFFFFD541 ),
169161 accountTagHighSecurity: const Color (0xFF4CEDE7 ),
@@ -204,8 +196,6 @@ class AppColorsTheme extends ThemeExtension<AppColorsTheme> {
204196 Color ? buttonNeutral,
205197 Color ? buttonDanger,
206198 Color ? buttonSuccess,
207- Color ? skeletonBase,
208- Color ? skeletonHighlight,
209199 Color ? accountTagGuardian,
210200 Color ? accountTagEntrusted,
211201 Color ? accountTagHighSecurity,
@@ -243,8 +233,6 @@ class AppColorsTheme extends ThemeExtension<AppColorsTheme> {
243233 buttonNeutral: buttonNeutral ?? this .buttonNeutral,
244234 buttonDanger: buttonDanger ?? this .buttonDanger,
245235 buttonSuccess: buttonSuccess ?? this .buttonSuccess,
246- skeletonBase: skeletonBase ?? this .skeletonBase,
247- skeletonHighlight: skeletonHighlight ?? this .skeletonHighlight,
248236 accountTagGuardian: accountTagGuardian ?? this .accountTagGuardian,
249237 accountTagEntrusted: accountTagEntrusted ?? this .accountTagEntrusted,
250238 accountTagHighSecurity: accountTagHighSecurity ?? this .accountTagHighSecurity,
@@ -287,8 +275,6 @@ class AppColorsTheme extends ThemeExtension<AppColorsTheme> {
287275 buttonDanger: Color .lerp (buttonDanger, other.buttonDanger, t) ?? buttonDanger,
288276 buttonSuccess: Color .lerp (buttonSuccess, other.buttonSuccess, t) ?? buttonSuccess,
289277 buttonPrimary: other.buttonPrimary,
290- skeletonBase: Color .lerp (skeletonBase, other.skeletonBase, t) ?? skeletonBase,
291- skeletonHighlight: Color .lerp (skeletonHighlight, other.skeletonHighlight, t) ?? skeletonHighlight,
292278 accountTagGuardian: Color .lerp (accountTagGuardian, other.accountTagGuardian, t) ?? accountTagGuardian,
293279 accountTagEntrusted: Color .lerp (accountTagEntrusted, other.accountTagEntrusted, t) ?? accountTagEntrusted,
294280 accountTagHighSecurity:
0 commit comments