├── .gitignore ├── LICENSE.txt ├── MAThemeKit.podspec ├── MAThemeKit.xcodeproj └── project.pbxproj ├── MAThemeKit ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── MAThemeKit-Info.plist ├── MAThemeKit-Prefix.pch ├── MAThemeKit.h ├── MAThemeKit.m ├── MainViewController.h ├── MainViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── MAThemeKitTests ├── MAThemeKitTests-Info.plist ├── MAThemeKitTests.m └── en.lproj │ └── InfoPlist.strings ├── README.md └── Screenshots ├── screenshot1.png └── screenshot2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MAThemeKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit.podspec -------------------------------------------------------------------------------- /MAThemeKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MAThemeKit/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/AppDelegate.h -------------------------------------------------------------------------------- /MAThemeKit/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/AppDelegate.m -------------------------------------------------------------------------------- /MAThemeKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MAThemeKit/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /MAThemeKit/MAThemeKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/MAThemeKit-Info.plist -------------------------------------------------------------------------------- /MAThemeKit/MAThemeKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/MAThemeKit-Prefix.pch -------------------------------------------------------------------------------- /MAThemeKit/MAThemeKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/MAThemeKit.h -------------------------------------------------------------------------------- /MAThemeKit/MAThemeKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/MAThemeKit.m -------------------------------------------------------------------------------- /MAThemeKit/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/MainViewController.h -------------------------------------------------------------------------------- /MAThemeKit/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/MainViewController.m -------------------------------------------------------------------------------- /MAThemeKit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MAThemeKit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKit/main.m -------------------------------------------------------------------------------- /MAThemeKitTests/MAThemeKitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKitTests/MAThemeKitTests-Info.plist -------------------------------------------------------------------------------- /MAThemeKitTests/MAThemeKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/MAThemeKitTests/MAThemeKitTests.m -------------------------------------------------------------------------------- /MAThemeKitTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/Screenshots/screenshot1.png -------------------------------------------------------------------------------- /Screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamaral/MAThemeKit/HEAD/Screenshots/screenshot2.png --------------------------------------------------------------------------------