Created
June 21, 2023 06:02
-
-
Save WonderJeffy/ce7ab9741ea76197641ab16584ad35cb to your computer and use it in GitHub Desktop.
柔和随机色
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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