├── FlatColors ├── .gitattributes ├── .gitignore ├── FlatColors.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── FlatColors.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── FlatColors │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── BigColorTableViewCell.h │ ├── BigColorTableViewCell.m │ ├── ColorsTableViewController.h │ ├── ColorsTableViewController.m │ ├── FlatColors-Info.plist │ ├── FlatColors-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── FlatColorsTests │ ├── FlatColorsTests-Info.plist │ ├── FlatColorsTests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── Podfile └── Podfile.lock ├── LICENSE ├── README.md ├── UIColor+FlatColors.podspec ├── UIColor+FlatColors ├── UIColor+FlatColors.h └── UIColor+FlatColors.m ├── generator.coffee └── screenshot.png /FlatColors/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj binary merge=union -------------------------------------------------------------------------------- /FlatColors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/.gitignore -------------------------------------------------------------------------------- /FlatColors/FlatColors.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FlatColors/FlatColors.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FlatColors/FlatColors.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FlatColors/FlatColors.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FlatColors/FlatColors/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/AppDelegate.h -------------------------------------------------------------------------------- /FlatColors/FlatColors/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/AppDelegate.m -------------------------------------------------------------------------------- /FlatColors/FlatColors/BigColorTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/BigColorTableViewCell.h -------------------------------------------------------------------------------- /FlatColors/FlatColors/BigColorTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/BigColorTableViewCell.m -------------------------------------------------------------------------------- /FlatColors/FlatColors/ColorsTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/ColorsTableViewController.h -------------------------------------------------------------------------------- /FlatColors/FlatColors/ColorsTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/ColorsTableViewController.m -------------------------------------------------------------------------------- /FlatColors/FlatColors/FlatColors-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/FlatColors-Info.plist -------------------------------------------------------------------------------- /FlatColors/FlatColors/FlatColors-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/FlatColors-Prefix.pch -------------------------------------------------------------------------------- /FlatColors/FlatColors/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FlatColors/FlatColors/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /FlatColors/FlatColors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlatColors/FlatColors/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColors/main.m -------------------------------------------------------------------------------- /FlatColors/FlatColorsTests/FlatColorsTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColorsTests/FlatColorsTests-Info.plist -------------------------------------------------------------------------------- /FlatColors/FlatColorsTests/FlatColorsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/FlatColorsTests/FlatColorsTests.m -------------------------------------------------------------------------------- /FlatColors/FlatColorsTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlatColors/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/Podfile -------------------------------------------------------------------------------- /FlatColors/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/FlatColors/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/README.md -------------------------------------------------------------------------------- /UIColor+FlatColors.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/UIColor+FlatColors.podspec -------------------------------------------------------------------------------- /UIColor+FlatColors/UIColor+FlatColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/UIColor+FlatColors/UIColor+FlatColors.h -------------------------------------------------------------------------------- /UIColor+FlatColors/UIColor+FlatColors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/UIColor+FlatColors/UIColor+FlatColors.m -------------------------------------------------------------------------------- /generator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/generator.coffee -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokagio/UIColor-FlatColors/HEAD/screenshot.png --------------------------------------------------------------------------------