├── .gitignore ├── .travis.yml ├── Assets ├── .gitkeep └── dynamic_type_demo.gif ├── CHANGELOG.md ├── Examples ├── Shared │ └── Fonts.swift ├── Swash Examples.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── iOS Example.xcscheme │ │ ├── tvOS Example.xcscheme │ │ └── watchOS Example.xcscheme ├── iOS │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── tvOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Launch Image.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── watchOS Extension │ ├── Assets.xcassets │ │ ├── Complication.complicationset │ │ │ ├── Circular.imageset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Extra Large.imageset │ │ │ │ └── Contents.json │ │ │ ├── Graphic Bezel.imageset │ │ │ │ └── Contents.json │ │ │ ├── Graphic Circular.imageset │ │ │ │ └── Contents.json │ │ │ ├── Graphic Corner.imageset │ │ │ │ └── Contents.json │ │ │ ├── Graphic Large Rectangular.imageset │ │ │ │ └── Contents.json │ │ │ ├── Modular.imageset │ │ │ │ └── Contents.json │ │ │ └── Utilitarian.imageset │ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ExtensionDelegate.swift │ ├── Info.plist │ └── InterfaceController.swift └── watchOS │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Interface.storyboard │ └── Info.plist ├── LICENSE ├── README.md ├── Source ├── CascadingFontProperties.swift ├── Default Sizes │ ├── DefaultSizes+iOS.swift │ ├── DefaultSizes+tvOS.swift │ └── DefaultSizes+watchOS.swift ├── Font.swift ├── Supporting Files │ ├── Info.plist │ └── Swash.h ├── SystemFont.swift └── Utils.swift ├── Swash.podspec ├── Swash.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Swash iOS Tests.xcscheme │ ├── Swash iOS.xcscheme │ ├── Swash tvOS Tests.xcscheme │ ├── Swash tvOS.xcscheme │ └── Swash watchOS.xcscheme ├── Swash.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── Tests ├── CustomFontTests.swift ├── Info.plist ├── SystemFontTests.swift └── TestFonts.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/.travis.yml -------------------------------------------------------------------------------- /Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/dynamic_type_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Assets/dynamic_type_demo.gif -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Examples/Shared/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/Shared/Fonts.swift -------------------------------------------------------------------------------- /Examples/Swash Examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/Swash Examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Swash Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/Swash Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Swash Examples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/Swash Examples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/Swash Examples.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/Swash Examples.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme -------------------------------------------------------------------------------- /Examples/Swash Examples.xcodeproj/xcshareddata/xcschemes/tvOS Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/Swash Examples.xcodeproj/xcshareddata/xcschemes/tvOS Example.xcscheme -------------------------------------------------------------------------------- /Examples/Swash Examples.xcodeproj/xcshareddata/xcschemes/watchOS Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/Swash Examples.xcodeproj/xcshareddata/xcschemes/watchOS Example.xcscheme -------------------------------------------------------------------------------- /Examples/iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Examples/iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/iOS/Info.plist -------------------------------------------------------------------------------- /Examples/iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/iOS/ViewController.swift -------------------------------------------------------------------------------- /Examples/tvOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Assets.xcassets/Launch Image.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Assets.xcassets/Launch Image.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/tvOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/Info.plist -------------------------------------------------------------------------------- /Examples/tvOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/tvOS/ViewController.swift -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /Examples/watchOS Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/Info.plist -------------------------------------------------------------------------------- /Examples/watchOS Extension/InterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS Extension/InterfaceController.swift -------------------------------------------------------------------------------- /Examples/watchOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/watchOS/Base.lproj/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS/Base.lproj/Interface.storyboard -------------------------------------------------------------------------------- /Examples/watchOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Examples/watchOS/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/README.md -------------------------------------------------------------------------------- /Source/CascadingFontProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Source/CascadingFontProperties.swift -------------------------------------------------------------------------------- /Source/Default Sizes/DefaultSizes+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Source/Default Sizes/DefaultSizes+iOS.swift -------------------------------------------------------------------------------- /Source/Default Sizes/DefaultSizes+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Source/Default Sizes/DefaultSizes+tvOS.swift -------------------------------------------------------------------------------- /Source/Default Sizes/DefaultSizes+watchOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Source/Default Sizes/DefaultSizes+watchOS.swift -------------------------------------------------------------------------------- /Source/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Source/Font.swift -------------------------------------------------------------------------------- /Source/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Source/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Source/Supporting Files/Swash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Source/Supporting Files/Swash.h -------------------------------------------------------------------------------- /Source/SystemFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Source/SystemFont.swift -------------------------------------------------------------------------------- /Source/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Source/Utils.swift -------------------------------------------------------------------------------- /Swash.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.podspec -------------------------------------------------------------------------------- /Swash.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swash.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swash.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Swash.xcodeproj/xcshareddata/xcschemes/Swash iOS Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcodeproj/xcshareddata/xcschemes/Swash iOS Tests.xcscheme -------------------------------------------------------------------------------- /Swash.xcodeproj/xcshareddata/xcschemes/Swash iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcodeproj/xcshareddata/xcschemes/Swash iOS.xcscheme -------------------------------------------------------------------------------- /Swash.xcodeproj/xcshareddata/xcschemes/Swash tvOS Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcodeproj/xcshareddata/xcschemes/Swash tvOS Tests.xcscheme -------------------------------------------------------------------------------- /Swash.xcodeproj/xcshareddata/xcschemes/Swash tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcodeproj/xcshareddata/xcschemes/Swash tvOS.xcscheme -------------------------------------------------------------------------------- /Swash.xcodeproj/xcshareddata/xcschemes/Swash watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcodeproj/xcshareddata/xcschemes/Swash watchOS.xcscheme -------------------------------------------------------------------------------- /Swash.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swash.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Swash.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Swash.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Tests/CustomFontTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Tests/CustomFontTests.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/SystemFontTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Tests/SystemFontTests.swift -------------------------------------------------------------------------------- /Tests/TestFonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindgrub/Swash/HEAD/Tests/TestFonts.swift --------------------------------------------------------------------------------