@@ -13,35 +13,38 @@ struct JetpackPrologueStyleGuide {
1313
1414 // Gradient overlay colors
1515 // new
16- static let newGradientColor = UIColor ( light: . muriel( color: . jetpackGreen, . shade5 ) , dark: . muriel( color: . jetpackGreen, . shade100) )
16+ static let newGradientColor = UIColor ( light: . muriel( color: . jetpackGreen, . shade0 ) , dark: . muriel( color: . jetpackGreen, . shade100) )
1717 // combined
1818 static let gradientColor = FeatureFlag . newLandingScreen. enabled ? newGradientColor : oldBackgroundColor
1919
2020 // Continue with WordPress button colors
2121 // old
2222 static let oldContinueHighlightedFillColor = UIColor ( red: 1.00 , green: 1.00 , blue: 1.00 , alpha: 0.90 )
2323 // new
24- static let newContinueFillColor = UIColor . muriel ( color: . jetpackGreen, . shade50)
25- static let newContinueHighlightedFillColor = UIColor . muriel ( color: . jetpackGreen, . shade90)
24+ static let newContinueFillColor = UIColor ( light: . muriel( color: . jetpackGreen, . shade50) , dark: . white)
25+ static let newContinueHighlightedFillColor = UIColor ( light: . muriel( color: . jetpackGreen, . shade90) , dark: whiteWithAlpha07)
26+ static let newContinueTextColor = UIColor ( light: . white, dark: . muriel( color: . jetpackGreen, . shade80) )
2627
2728 // combined
2829 static let continueFillColor = FeatureFlag . newLandingScreen. enabled ? newContinueFillColor : . white
2930 static let continueHighlightedFillColor = FeatureFlag . newLandingScreen. enabled ? newContinueHighlightedFillColor : oldContinueHighlightedFillColor
30- static let continueTextColor = FeatureFlag . newLandingScreen. enabled ? . white : oldBackgroundColor
31+ static let continueTextColor = FeatureFlag . newLandingScreen. enabled ? newContinueTextColor : oldBackgroundColor
3132 static let continueHighlightedTextColor = FeatureFlag . newLandingScreen. enabled ? whiteWithAlpha07 : oldBackgroundColor
3233
3334
3435 // Enter your site address button
3536 // old
3637 static let oldSiteBorderColor = UIColor ( red: 1.00 , green: 1.00 , blue: 1.00 , alpha: 0.40 )
38+ static let newSiteTextColor = UIColor ( light: . muriel( color: . jetpackGreen, . shade90) , dark: . white)
39+ static let newSiteHighlightedTextColor = UIColor ( light: . muriel( color: . jetpackGreen, . shade50) , dark: whiteWithAlpha07)
3740 static let oldSiteHighlightedBorderColor = UIColor ( red: 1.00 , green: 1.00 , blue: 1.00 , alpha: 0.20 )
3841 // combined
39- static let siteFillColor = FeatureFlag . newLandingScreen. enabled ? . white : oldBackgroundColor
40- static let siteBorderColor = FeatureFlag . newLandingScreen. enabled ? . white : oldSiteBorderColor
41- static let siteTextColor = FeatureFlag . newLandingScreen. enabled ? UIColor . black : UIColor . white
42+ static let siteFillColor = FeatureFlag . newLandingScreen. enabled ? . clear : oldBackgroundColor
43+ static let siteBorderColor = FeatureFlag . newLandingScreen. enabled ? . clear : oldSiteBorderColor
44+ static let siteTextColor = FeatureFlag . newLandingScreen. enabled ? newSiteTextColor : UIColor . white
4245 static let siteHighlightedFillColor = FeatureFlag . newLandingScreen. enabled ? whiteWithAlpha07 : oldBackgroundColor
4346 static let siteHighlightedBorderColor = FeatureFlag . newLandingScreen. enabled ? whiteWithAlpha07 : oldSiteHighlightedBorderColor
44- static let siteHighlightedTextColor = FeatureFlag . newLandingScreen. enabled ? . black : whiteWithAlpha07
47+ static let siteHighlightedTextColor = FeatureFlag . newLandingScreen. enabled ? newSiteHighlightedTextColor : whiteWithAlpha07
4548
4649 // Color used in both old and versions
4750 static let whiteWithAlpha07 = UIColor . white. withAlphaComponent ( 0.7 )
0 commit comments