Comment on Show HN: NSString + RubyparentComments−wrl12yI prefer: #define RGB(color) \ (((color & 0xFF0000) >> 16) / 255.f), \ (((color & 0x00FF00) >> 8) / 255.f), \ (((color & 0x0000FF)) / 255.f) Pass in an HTML-style color hex triplet.
Comments
I prefer:
Pass in an HTML-style color hex triplet.