Skip to content

Instantly share code, notes, and snippets.

@Galeas
Created April 6, 2018 11:51
Show Gist options
  • Save Galeas/662e0ea017426e89e2de512bc7cfec4c to your computer and use it in GitHub Desktop.
Save Galeas/662e0ea017426e89e2de512bc7cfec4c to your computer and use it in GitHub Desktop.
Random color
CGFloat hue = ( arc4random_uniform(256) / 256.0 ); // 0.0 to 1.0
CGFloat saturation = ( arc4random_uniform(128) / 256.0 ) + 0.5; // 0.5 to 1.0, away from white
CGFloat brightness = ( arc4random_uniform(128) / 256.0 ) + 0.5; // 0.5 to 1.0, away from black
UIColor *color = [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment