├── .gitignore ├── LICENSE ├── README.md ├── iOS7Colors.podspec ├── iOS7Colors.xcodeproj └── project.pbxproj ├── iOS7Colors ├── CLAAppDelegate.h ├── CLAAppDelegate.m ├── CLAViewController.h ├── CLAViewController.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── UIColor+iOS7Colors.h ├── UIColor+iOS7Colors.m ├── en.lproj │ ├── CLAViewController.xib │ └── InfoPlist.strings ├── iOS7Colors-Info.plist ├── iOS7Colors-Prefix.pch └── main.m └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/README.md -------------------------------------------------------------------------------- /iOS7Colors.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors.podspec -------------------------------------------------------------------------------- /iOS7Colors.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS7Colors/CLAAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/CLAAppDelegate.h -------------------------------------------------------------------------------- /iOS7Colors/CLAAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/CLAAppDelegate.m -------------------------------------------------------------------------------- /iOS7Colors/CLAViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/CLAViewController.h -------------------------------------------------------------------------------- /iOS7Colors/CLAViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/CLAViewController.m -------------------------------------------------------------------------------- /iOS7Colors/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/Default-568h@2x.png -------------------------------------------------------------------------------- /iOS7Colors/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/Default.png -------------------------------------------------------------------------------- /iOS7Colors/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/Default@2x.png -------------------------------------------------------------------------------- /iOS7Colors/UIColor+iOS7Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/UIColor+iOS7Colors.h -------------------------------------------------------------------------------- /iOS7Colors/UIColor+iOS7Colors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/UIColor+iOS7Colors.m -------------------------------------------------------------------------------- /iOS7Colors/en.lproj/CLAViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/en.lproj/CLAViewController.xib -------------------------------------------------------------------------------- /iOS7Colors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOS7Colors/iOS7Colors-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/iOS7Colors-Info.plist -------------------------------------------------------------------------------- /iOS7Colors/iOS7Colors-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/iOS7Colors-Prefix.pch -------------------------------------------------------------------------------- /iOS7Colors/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/iOS7Colors/main.m -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claaslange/iOS7Colors/HEAD/screenshot.png --------------------------------------------------------------------------------