I want to have color border on button:
buyButton.layer.borderColor = UIColor(red: 83.0, green: 186.0, blue: 183.0, alpha: 1.0).cgColor
doesn't work for me, but
buyButton.layer.borderColor = UIColor.blue.cgColor
works. What is wrong with my color?
Thank you