ColorSenseRainbow icon indicating copy to clipboard operation
ColorSenseRainbow copied to clipboard

A plugin for Xcode that shows colours and allows you to modify them.

Results 8 ColorSenseRainbow issues
Sort by recently updated
recently updated
newest added

i have use this https://github.com/fpg1503/MakeXcodeGr8Again make the Xcode8 to XcodeGr8 and i add the uuid to plugins but it also not work

Does not show colors for UIColor instances created with the hex initializer.

Im using an UIColor Ext to include some custom colors in my project. with your plugin, `[UIColor colorWithRed:254 green:67 blue:101 alpha:1.0];` doesnt show the color `+ (UIColor *)badgeColor { return...

[UIColor colorWithRed:108/255.f green:108/255.f blue:108/255.f alpha:1.f];

Not working: static let white_darker = UIColor.init(red: 0.912, green: 0.917, blue: 0.917, alpha: 1.0) Working: static let white_darker = UIColor(red: 0.912, green: 0.917, blue: 0.917, alpha: 1.0)

7.3 will crash .

Many of my UIColors are formatted like [UIColor colorWithRed:1 green:0.5 blue:0.1 alpha:1] and i got annoyed by changing everything to decimals.