├── .gitignore ├── CreateFile.png ├── README.md ├── SuggestedColors.png ├── SuggestedColors.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SuggestedColors.xcscheme ├── SuggestedColors ├── Aspects.h ├── Aspects.m ├── ColorCell.h ├── ColorCell.m ├── ColorsViewController.h ├── ColorsViewController.m ├── ColorsViewController.xib ├── IBHeaders │ └── Headers.h ├── Info.plist ├── Storyboard.storyboard ├── SuggestedColors.h ├── SuggestedColors.m ├── SuggestedColors.plist ├── View.xib └── XCodeEditor │ ├── Utils │ ├── XCKeyBuilder.h │ └── XCKeyBuilder.m │ ├── XCAbstractDefinition.h │ ├── XCAbstractDefinition.m │ ├── XCBuildConfig.h │ ├── XCBuildConfig.m │ ├── XCClassDefinition.h │ ├── XCClassDefinition.m │ ├── XCFileOperationQueue.h │ ├── XCFileOperationQueue.m │ ├── XCFrameworkDefinition.h │ ├── XCFrameworkDefinition.m │ ├── XCGroup.h │ ├── XCGroup.m │ ├── XCProject+SubProject.h │ ├── XCProject+SubProject.m │ ├── XCProject.h │ ├── XCProject.m │ ├── XCSourceFile.h │ ├── XCSourceFile.m │ ├── XCSourceFileDefinition.h │ ├── XCSourceFileDefinition.m │ ├── XCSubProjectDefinition.h │ ├── XCSubProjectDefinition.m │ ├── XCTarget.h │ ├── XCTarget.m │ ├── XCXibDefinition.h │ ├── XCXibDefinition.m │ ├── XcodeEditor.h │ ├── XcodeGroupMember.h │ ├── XcodeMemberType.h │ ├── XcodeMemberType.m │ ├── XcodeSourceFileType.h │ └── XcodeSourceFileType.m └── SuggestedColorsTests ├── Info.plist └── SuggestedColorsTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/.gitignore -------------------------------------------------------------------------------- /CreateFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/CreateFile.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/README.md -------------------------------------------------------------------------------- /SuggestedColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors.png -------------------------------------------------------------------------------- /SuggestedColors.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SuggestedColors.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SuggestedColors.xcodeproj/xcshareddata/xcschemes/SuggestedColors.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors.xcodeproj/xcshareddata/xcschemes/SuggestedColors.xcscheme -------------------------------------------------------------------------------- /SuggestedColors/Aspects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/Aspects.h -------------------------------------------------------------------------------- /SuggestedColors/Aspects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/Aspects.m -------------------------------------------------------------------------------- /SuggestedColors/ColorCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/ColorCell.h -------------------------------------------------------------------------------- /SuggestedColors/ColorCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/ColorCell.m -------------------------------------------------------------------------------- /SuggestedColors/ColorsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/ColorsViewController.h -------------------------------------------------------------------------------- /SuggestedColors/ColorsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/ColorsViewController.m -------------------------------------------------------------------------------- /SuggestedColors/ColorsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/ColorsViewController.xib -------------------------------------------------------------------------------- /SuggestedColors/IBHeaders/Headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/IBHeaders/Headers.h -------------------------------------------------------------------------------- /SuggestedColors/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/Info.plist -------------------------------------------------------------------------------- /SuggestedColors/Storyboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/Storyboard.storyboard -------------------------------------------------------------------------------- /SuggestedColors/SuggestedColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/SuggestedColors.h -------------------------------------------------------------------------------- /SuggestedColors/SuggestedColors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/SuggestedColors.m -------------------------------------------------------------------------------- /SuggestedColors/SuggestedColors.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/SuggestedColors.plist -------------------------------------------------------------------------------- /SuggestedColors/View.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/View.xib -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/Utils/XCKeyBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/Utils/XCKeyBuilder.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/Utils/XCKeyBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/Utils/XCKeyBuilder.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCAbstractDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCAbstractDefinition.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCAbstractDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCAbstractDefinition.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCBuildConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCBuildConfig.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCBuildConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCBuildConfig.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCClassDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCClassDefinition.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCClassDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCClassDefinition.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCFileOperationQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCFileOperationQueue.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCFileOperationQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCFileOperationQueue.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCFrameworkDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCFrameworkDefinition.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCFrameworkDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCFrameworkDefinition.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCGroup.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCGroup.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCProject+SubProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCProject+SubProject.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCProject+SubProject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCProject+SubProject.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCProject.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCProject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCProject.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCSourceFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCSourceFile.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCSourceFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCSourceFile.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCSourceFileDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCSourceFileDefinition.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCSourceFileDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCSourceFileDefinition.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCSubProjectDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCSubProjectDefinition.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCSubProjectDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCSubProjectDefinition.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCTarget.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCTarget.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCXibDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCXibDefinition.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XCXibDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XCXibDefinition.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XcodeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XcodeEditor.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XcodeGroupMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XcodeGroupMember.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XcodeMemberType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XcodeMemberType.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XcodeMemberType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XcodeMemberType.m -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XcodeSourceFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XcodeSourceFileType.h -------------------------------------------------------------------------------- /SuggestedColors/XCodeEditor/XcodeSourceFileType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColors/XCodeEditor/XcodeSourceFileType.m -------------------------------------------------------------------------------- /SuggestedColorsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColorsTests/Info.plist -------------------------------------------------------------------------------- /SuggestedColorsTests/SuggestedColorsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwaitzel/SuggestedColors/HEAD/SuggestedColorsTests/SuggestedColorsTests.m --------------------------------------------------------------------------------