├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── StyleKit.podspec ├── StyleKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── StyleKit.xcscheme ├── StyleKit.xcworkspace └── contents.xcworkspacedata ├── StyleKit ├── FileLoader.swift ├── Helpers │ ├── ColorHelper.swift │ ├── ControlStateHelper.swift │ └── FontHelper.swift ├── Info.plist ├── StyleKit.h ├── StyleKit.swift ├── StyleParsable.swift ├── StyleParser.swift ├── Stylist.swift └── Utilities │ ├── ColorExtensions.swift │ ├── SKLogger.swift │ ├── SKTryCatch.h │ ├── SKTryCatch.m │ ├── StringExtensions.swift │ ├── UIAppearance+Swift.h │ └── UIAppearance+Swift.m ├── StyleKitDemo ├── StyleKitDemo.xcodeproj │ └── project.pbxproj └── StyleKitDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CustomViews │ ├── SKButton.swift │ ├── SKLabel.swift │ ├── SKNavigationBar.swift │ ├── SKTextField.swift │ └── SKView.swift │ ├── Info.plist │ ├── Style │ ├── StyleParser.swift │ └── style.json │ └── ViewController.swift └── StyleKitTests ├── HelperTests.swift ├── Info.plist ├── JSONLoadTests.swift ├── Style ├── fail-style.json ├── style.json └── success-style.json ├── StyleKitTestsHost ├── AppDelegate.swift └── Info.plist ├── StyleTests.swift └── UI Extensions ├── SKButton.swift ├── SKLabel.swift └── SKView.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/README.md -------------------------------------------------------------------------------- /StyleKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit.podspec -------------------------------------------------------------------------------- /StyleKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StyleKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StyleKit.xcodeproj/xcshareddata/xcschemes/StyleKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit.xcodeproj/xcshareddata/xcschemes/StyleKit.xcscheme -------------------------------------------------------------------------------- /StyleKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StyleKit/FileLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/FileLoader.swift -------------------------------------------------------------------------------- /StyleKit/Helpers/ColorHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Helpers/ColorHelper.swift -------------------------------------------------------------------------------- /StyleKit/Helpers/ControlStateHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Helpers/ControlStateHelper.swift -------------------------------------------------------------------------------- /StyleKit/Helpers/FontHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Helpers/FontHelper.swift -------------------------------------------------------------------------------- /StyleKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Info.plist -------------------------------------------------------------------------------- /StyleKit/StyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/StyleKit.h -------------------------------------------------------------------------------- /StyleKit/StyleKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/StyleKit.swift -------------------------------------------------------------------------------- /StyleKit/StyleParsable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/StyleParsable.swift -------------------------------------------------------------------------------- /StyleKit/StyleParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/StyleParser.swift -------------------------------------------------------------------------------- /StyleKit/Stylist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Stylist.swift -------------------------------------------------------------------------------- /StyleKit/Utilities/ColorExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Utilities/ColorExtensions.swift -------------------------------------------------------------------------------- /StyleKit/Utilities/SKLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Utilities/SKLogger.swift -------------------------------------------------------------------------------- /StyleKit/Utilities/SKTryCatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Utilities/SKTryCatch.h -------------------------------------------------------------------------------- /StyleKit/Utilities/SKTryCatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Utilities/SKTryCatch.m -------------------------------------------------------------------------------- /StyleKit/Utilities/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Utilities/StringExtensions.swift -------------------------------------------------------------------------------- /StyleKit/Utilities/UIAppearance+Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Utilities/UIAppearance+Swift.h -------------------------------------------------------------------------------- /StyleKit/Utilities/UIAppearance+Swift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKit/Utilities/UIAppearance+Swift.m -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/AppDelegate.swift -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/CustomViews/SKButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/CustomViews/SKButton.swift -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/CustomViews/SKLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/CustomViews/SKLabel.swift -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/CustomViews/SKNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/CustomViews/SKNavigationBar.swift -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/CustomViews/SKTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/CustomViews/SKTextField.swift -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/CustomViews/SKView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/CustomViews/SKView.swift -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/Info.plist -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/Style/StyleParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/Style/StyleParser.swift -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/Style/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/Style/style.json -------------------------------------------------------------------------------- /StyleKitDemo/StyleKitDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitDemo/StyleKitDemo/ViewController.swift -------------------------------------------------------------------------------- /StyleKitTests/HelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/HelperTests.swift -------------------------------------------------------------------------------- /StyleKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/Info.plist -------------------------------------------------------------------------------- /StyleKitTests/JSONLoadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/JSONLoadTests.swift -------------------------------------------------------------------------------- /StyleKitTests/Style/fail-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/Style/fail-style.json -------------------------------------------------------------------------------- /StyleKitTests/Style/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/Style/style.json -------------------------------------------------------------------------------- /StyleKitTests/Style/success-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/Style/success-style.json -------------------------------------------------------------------------------- /StyleKitTests/StyleKitTestsHost/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/StyleKitTestsHost/AppDelegate.swift -------------------------------------------------------------------------------- /StyleKitTests/StyleKitTestsHost/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/StyleKitTestsHost/Info.plist -------------------------------------------------------------------------------- /StyleKitTests/StyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/StyleTests.swift -------------------------------------------------------------------------------- /StyleKitTests/UI Extensions/SKButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/UI Extensions/SKButton.swift -------------------------------------------------------------------------------- /StyleKitTests/UI Extensions/SKLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/UI Extensions/SKLabel.swift -------------------------------------------------------------------------------- /StyleKitTests/UI Extensions/SKView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/146BC/StyleKit/HEAD/StyleKitTests/UI Extensions/SKView.swift --------------------------------------------------------------------------------