@@ -50,6 +50,8 @@ class AppColors extends ThemeExtension<AppColors> {
5050 final Color appStoreBorder;
5151 final Color githubFg;
5252 final Color githubBorder;
53+ final Color pubFg;
54+ final Color pubBorder;
5355 final Color internalLabel;
5456 final Color success;
5557 final Color toggleCircle;
@@ -107,6 +109,8 @@ class AppColors extends ThemeExtension<AppColors> {
107109 required this .appStoreBorder,
108110 required this .githubFg,
109111 required this .githubBorder,
112+ required this .pubFg,
113+ required this .pubBorder,
110114 required this .internalLabel,
111115 required this .success,
112116 required this .toggleCircle,
@@ -165,6 +169,8 @@ class AppColors extends ThemeExtension<AppColors> {
165169 appStoreBorder: Color (0xFFC7D2FE ),
166170 githubFg: Color (0xFF1E293B ),
167171 githubBorder: Color (0xFFCBD5E1 ),
172+ pubFg: Color (0xFF0175C2 ),
173+ pubBorder: Color (0xFF7EC8E8 ),
168174 internalLabel: Color (0xFF64748B ),
169175 success: Color (0xFF16A34A ),
170176 toggleCircle: Color (0xFFFFFFFF ),
@@ -223,6 +229,8 @@ class AppColors extends ThemeExtension<AppColors> {
223229 appStoreBorder: Color (0xFF4E5370 ),
224230 githubFg: Color (0xFFE0E0E0 ),
225231 githubBorder: Color (0xFF4E5370 ),
232+ pubFg: Color (0xFF64B5F6 ),
233+ pubBorder: Color (0xFF4E5370 ),
226234 internalLabel: Color (0xFF94A3B8 ),
227235 success: Color (0xFF81C784 ),
228236 toggleCircle: Color (0xFFE8EEFF ),
@@ -282,6 +290,8 @@ class AppColors extends ThemeExtension<AppColors> {
282290 Color ? appStoreBorder,
283291 Color ? githubFg,
284292 Color ? githubBorder,
293+ Color ? pubFg,
294+ Color ? pubBorder,
285295 Color ? internalLabel,
286296 Color ? success,
287297 Color ? toggleCircle,
@@ -342,6 +352,8 @@ class AppColors extends ThemeExtension<AppColors> {
342352 appStoreBorder: appStoreBorder ?? this .appStoreBorder,
343353 githubFg: githubFg ?? this .githubFg,
344354 githubBorder: githubBorder ?? this .githubBorder,
355+ pubFg: pubFg ?? this .pubFg,
356+ pubBorder: pubBorder ?? this .pubBorder,
345357 internalLabel: internalLabel ?? this .internalLabel,
346358 success: success ?? this .success,
347359 toggleCircle: toggleCircle ?? this .toggleCircle,
@@ -409,6 +421,8 @@ class AppColors extends ThemeExtension<AppColors> {
409421 appStoreBorder: l (appStoreBorder, other.appStoreBorder),
410422 githubFg: l (githubFg, other.githubFg),
411423 githubBorder: l (githubBorder, other.githubBorder),
424+ pubFg: l (pubFg, other.pubFg),
425+ pubBorder: l (pubBorder, other.pubBorder),
412426 internalLabel: l (internalLabel, other.internalLabel),
413427 success: l (success, other.success),
414428 toggleCircle: l (toggleCircle, other.toggleCircle),
0 commit comments