diff --git a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift index abfbd885..16592f32 100644 --- a/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift +++ b/Mastodon/Scene/Onboarding/Welcome/WelcomeViewController.swift @@ -65,7 +65,6 @@ extension WelcomeViewController { setupOnboardingAppearance() if traitCollection.userInterfaceIdiom == .phone { - view.backgroundColor = Asset.Welcome.Illustration.backgroundCyan.color welcomeIllustrationView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(welcomeIllustrationView) welcomeIllustrationViewBottomAnchorLayoutConstraint = welcomeIllustrationView.bottomAnchor.constraint(equalTo: view.bottomAnchor) @@ -74,6 +73,8 @@ extension WelcomeViewController { welcomeIllustrationView.rightAnchor.constraint(equalTo: view.rightAnchor, constant: 44), welcomeIllustrationViewBottomAnchorLayoutConstraint!, ]) + view.backgroundColor = .black + welcomeIllustrationView.alpha = 0.9 } view.addSubview(logoImageView)