├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Synth.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Synth.xcscheme │ └── SynthExamples.xcscheme ├── Synth ├── Info.plist ├── Source │ ├── Extensions │ │ ├── CALayer+Shadow.swift │ │ ├── UIButton+Neu.swift │ │ ├── UIColor+Hex.swift │ │ ├── UIColor+NearColor.swift │ │ ├── UIView+Blur.swift │ │ └── UIView+Neu.swift │ ├── NeuButtonContent.swift │ ├── NeuButtonView.swift │ ├── NeuConstants.swift │ ├── NeuUIHelper.swift │ ├── NeuUtils.swift │ └── NeuView.swift └── Synth.h ├── SynthExamples ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── back.imageset │ │ ├── Contents.json │ │ └── back.pdf │ ├── buttons_text.imageset │ │ ├── Contents.json │ │ └── buttons_text.pdf │ ├── cross.imageset │ │ ├── Contents.json │ │ └── cross.pdf │ ├── emboss_deboss_text.imageset │ │ ├── Contents.json │ │ └── emboss_deboss_text.pdf │ ├── explore_buttons.imageset │ │ ├── Contents.json │ │ └── explore_buttons.pdf │ ├── explore_gutter.imageset │ │ ├── Contents.json │ │ └── explore_gutter.pdf │ ├── fiber_left.imageset │ │ ├── Contents.json │ │ └── fiber_left.png │ ├── fiber_right.imageset │ │ ├── Contents.json │ │ └── fiber_right.png │ ├── gutter_text.imageset │ │ ├── Contents.json │ │ └── gutter_text.pdf │ ├── plus.imageset │ │ ├── Contents.json │ │ └── plus.pdf │ ├── synth.imageset │ │ ├── Contents.json │ │ └── synth.pdf │ ├── type_1_text.imageset │ │ ├── Contents.json │ │ └── type_1_text.pdf │ ├── type_2_text.imageset │ │ ├── Contents.json │ │ └── Group 3 Copy1.pdf │ ├── type_3_text.imageset │ │ ├── Contents.json │ │ └── type_3_text.pdf │ └── type_4_text.imageset │ │ ├── Contents.json │ │ └── type_4_text.pdf ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewControllers │ ├── ButtonsViewController.swift │ ├── ButtonsViewController.xib │ ├── GutterViewController.swift │ ├── GutterViewController.xib │ ├── ViewController.swift │ └── ViewController.xib ├── Tests └── synth-iosTests │ ├── XCTestManifests.swift │ └── synth_iosTests.swift └── synth-ios.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/README.md -------------------------------------------------------------------------------- /Synth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Synth.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Synth.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Synth.xcodeproj/xcshareddata/xcschemes/Synth.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth.xcodeproj/xcshareddata/xcschemes/Synth.xcscheme -------------------------------------------------------------------------------- /Synth.xcodeproj/xcshareddata/xcschemes/SynthExamples.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth.xcodeproj/xcshareddata/xcschemes/SynthExamples.xcscheme -------------------------------------------------------------------------------- /Synth/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Info.plist -------------------------------------------------------------------------------- /Synth/Source/Extensions/CALayer+Shadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/Extensions/CALayer+Shadow.swift -------------------------------------------------------------------------------- /Synth/Source/Extensions/UIButton+Neu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/Extensions/UIButton+Neu.swift -------------------------------------------------------------------------------- /Synth/Source/Extensions/UIColor+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/Extensions/UIColor+Hex.swift -------------------------------------------------------------------------------- /Synth/Source/Extensions/UIColor+NearColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/Extensions/UIColor+NearColor.swift -------------------------------------------------------------------------------- /Synth/Source/Extensions/UIView+Blur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/Extensions/UIView+Blur.swift -------------------------------------------------------------------------------- /Synth/Source/Extensions/UIView+Neu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/Extensions/UIView+Neu.swift -------------------------------------------------------------------------------- /Synth/Source/NeuButtonContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/NeuButtonContent.swift -------------------------------------------------------------------------------- /Synth/Source/NeuButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/NeuButtonView.swift -------------------------------------------------------------------------------- /Synth/Source/NeuConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/NeuConstants.swift -------------------------------------------------------------------------------- /Synth/Source/NeuUIHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/NeuUIHelper.swift -------------------------------------------------------------------------------- /Synth/Source/NeuUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/NeuUtils.swift -------------------------------------------------------------------------------- /Synth/Source/NeuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Source/NeuView.swift -------------------------------------------------------------------------------- /Synth/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Synth/Synth.h -------------------------------------------------------------------------------- /SynthExamples/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/AppDelegate.swift -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/back.imageset/back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/back.imageset/back.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/buttons_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/buttons_text.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/buttons_text.imageset/buttons_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/buttons_text.imageset/buttons_text.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/cross.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/cross.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/cross.imageset/cross.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/cross.imageset/cross.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/emboss_deboss_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/emboss_deboss_text.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/emboss_deboss_text.imageset/emboss_deboss_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/emboss_deboss_text.imageset/emboss_deboss_text.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/explore_buttons.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/explore_buttons.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/explore_buttons.imageset/explore_buttons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/explore_buttons.imageset/explore_buttons.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/explore_gutter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/explore_gutter.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/explore_gutter.imageset/explore_gutter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/explore_gutter.imageset/explore_gutter.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/fiber_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/fiber_left.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/fiber_left.imageset/fiber_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/fiber_left.imageset/fiber_left.png -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/fiber_right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/fiber_right.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/fiber_right.imageset/fiber_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/fiber_right.imageset/fiber_right.png -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/gutter_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/gutter_text.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/gutter_text.imageset/gutter_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/gutter_text.imageset/gutter_text.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/plus.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/plus.imageset/plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/plus.imageset/plus.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/synth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/synth.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/synth.imageset/synth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/synth.imageset/synth.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/type_1_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/type_1_text.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/type_1_text.imageset/type_1_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/type_1_text.imageset/type_1_text.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/type_2_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/type_2_text.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/type_2_text.imageset/Group 3 Copy1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/type_2_text.imageset/Group 3 Copy1.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/type_3_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/type_3_text.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/type_3_text.imageset/type_3_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/type_3_text.imageset/type_3_text.pdf -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/type_4_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/type_4_text.imageset/Contents.json -------------------------------------------------------------------------------- /SynthExamples/Assets.xcassets/type_4_text.imageset/type_4_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Assets.xcassets/type_4_text.imageset/type_4_text.pdf -------------------------------------------------------------------------------- /SynthExamples/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SynthExamples/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SynthExamples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/Info.plist -------------------------------------------------------------------------------- /SynthExamples/ViewControllers/ButtonsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/ViewControllers/ButtonsViewController.swift -------------------------------------------------------------------------------- /SynthExamples/ViewControllers/ButtonsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/ViewControllers/ButtonsViewController.xib -------------------------------------------------------------------------------- /SynthExamples/ViewControllers/GutterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/ViewControllers/GutterViewController.swift -------------------------------------------------------------------------------- /SynthExamples/ViewControllers/GutterViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/ViewControllers/GutterViewController.xib -------------------------------------------------------------------------------- /SynthExamples/ViewControllers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/ViewControllers/ViewController.swift -------------------------------------------------------------------------------- /SynthExamples/ViewControllers/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/SynthExamples/ViewControllers/ViewController.xib -------------------------------------------------------------------------------- /Tests/synth-iosTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Tests/synth-iosTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/synth-iosTests/synth_iosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/Tests/synth-iosTests/synth_iosTests.swift -------------------------------------------------------------------------------- /synth-ios.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRED-CLUB/synth-ios/HEAD/synth-ios.podspec --------------------------------------------------------------------------------