gitextract_5_vrjan2/ ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── Chameleon/ │ ├── Chameleon.h │ └── Info.plist ├── Chameleon.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── Chameleon.xcscheme ├── ChameleonDemo/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── ChameleonDemo-ObjC/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── ChameleonDemo-Swift/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SampleImageOne.imageset/ │ │ │ └── Contents.json │ │ ├── SampleImageTwo.imageset/ │ │ │ └── Contents.json │ │ ├── first.imageset/ │ │ │ └── Contents.json │ │ ├── logo.imageset/ │ │ │ └── Contents.json │ │ └── second.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── FirstViewController.swift │ ├── Info.plist │ └── SecondViewController.swift ├── ChameleonFramework.podspec ├── Extras/ │ ├── Chameleon.clr │ ├── Chameleon.dmg │ ├── Chameleon.sketchpalette │ ├── Chameleon_Photoshop.aco │ └── Chameleon_v2.clr ├── LICENSE.md ├── Pod/ │ └── Classes/ │ ├── Objective-C/ │ │ ├── Chameleon.h │ │ ├── ChameleonConstants.h │ │ ├── ChameleonConstants.m │ │ ├── ChameleonEnums.h │ │ ├── ChameleonMacros.h │ │ ├── Chameleon_.h │ │ ├── Chameleon_.m │ │ ├── NSArray+Chameleon.h │ │ ├── NSArray+Chameleon.m │ │ ├── UIAppearance+Swift.h │ │ ├── UIAppearance+Swift.m │ │ ├── UIButton+Chameleon.h │ │ ├── UIButton+Chameleon.m │ │ ├── UIColor+Chameleon.h │ │ ├── UIColor+Chameleon.m │ │ ├── UIColor+ChameleonPrivate.h │ │ ├── UIColor+ChameleonPrivate.m │ │ ├── UIImage+ChameleonPrivate.h │ │ ├── UIImage+ChameleonPrivate.m │ │ ├── UILabel+Chameleon.h │ │ ├── UILabel+Chameleon.m │ │ ├── UINavigationController+Chameleon.h │ │ ├── UINavigationController+Chameleon.m │ │ ├── UIView+ChameleonPrivate.h │ │ ├── UIView+ChameleonPrivate.m │ │ ├── UIViewController+Chameleon.h │ │ └── UIViewController+Chameleon.m │ └── Swift/ │ └── ChameleonShorthand.swift └── README.md