And code to color the background. class ViewController: UIViewController { @IBOutlet var main_UIView: UIView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. main_UIView.backgroundColor = UIColor(red: 0x5C/255.0, green: 0x78/255.0, blue: 0x94/255.0, alpha: 1.0) } }