├── ColorUtils.podspec.json ├── ColorUtils ├── ColorUtils.h └── ColorUtils.m ├── Examples └── Color With String │ ├── ColorUtilsExample.xcodeproj │ └── project.pbxproj │ └── ColorUtilsExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ColorUtilsExample-Info.plist │ ├── Default-568h@2x.png │ ├── Plaid.jpg │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── LICENCE.md └── README.md /ColorUtils.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/ColorUtils.podspec.json -------------------------------------------------------------------------------- /ColorUtils/ColorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/ColorUtils/ColorUtils.h -------------------------------------------------------------------------------- /ColorUtils/ColorUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/ColorUtils/ColorUtils.m -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample/AppDelegate.h -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample/AppDelegate.m -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/ColorUtilsExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample/ColorUtilsExample-Info.plist -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/Plaid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample/Plaid.jpg -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample/ViewController.h -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample/ViewController.m -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /Examples/Color With String/ColorUtilsExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/Examples/Color With String/ColorUtilsExample/main.m -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/ColorUtils/HEAD/README.md --------------------------------------------------------------------------------