// "Change" status bar background color

    let statusBarBackground = UIView(frame: UIApplication.shared.statusBarFrame)
    let statusBarColor = UIColor(red: 32/255, green: 149/255, blue: 215/255, alpha: 1.0)
    statusBarBackground.backgroundColor = statusBarColor
    view.addSubview(statusBarBackground)

// Change status bar text color

    override var preferredStatusBarStyle: UIStatusBarStyle {
    	return .lightContent
    }