Skip to content

Instantly share code, notes, and snippets.

@WonderJeffy
Created June 21, 2023 06:02
Show Gist options
  • Save WonderJeffy/ce7ab9741ea76197641ab16584ad35cb to your computer and use it in GitHub Desktop.
Save WonderJeffy/ce7ab9741ea76197641ab16584ad35cb to your computer and use it in GitHub Desktop.
柔和随机色
extension UIColor {
static var randomPastelColor: UIColor {
return UIColor(
hue: .random(in: 0 ... 1),
saturation: 0.4,
brightness: 0.9,
alpha: 1.0
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment