├── .gitignore ├── CustomFontsPackage ├── Package.swift └── Sources │ ├── DesignSystem │ └── Sources │ │ ├── Extensions │ │ ├── Color+Custom.swift │ │ └── Font+Custom.swift │ │ ├── Resources │ │ ├── Colors.xcassets │ │ │ ├── Contents.json │ │ │ └── brandPrimary.colorset │ │ │ │ └── Contents.json │ │ ├── Fonts │ │ │ ├── Lobster-Regular.ttf │ │ │ └── SyneMono-Regular.ttf │ │ └── Images.xcassets │ │ │ ├── Contents.json │ │ │ └── logo.imageset │ │ │ ├── Contents.json │ │ │ └── ccheart_black.svg │ │ └── Views │ │ └── LogoView.swift │ └── FeatureModule │ └── Sources │ └── ModuleView.swift ├── LICENSE ├── README.md ├── SwiftUICustomFonts.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── SwiftUICustomFonts ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── ContentView.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json └── SwiftUICustomFontsApp.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/.gitignore -------------------------------------------------------------------------------- /CustomFontsPackage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Package.swift -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Extensions/Color+Custom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Extensions/Color+Custom.swift -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Extensions/Font+Custom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Extensions/Font+Custom.swift -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Colors.xcassets/brandPrimary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Colors.xcassets/brandPrimary.colorset/Contents.json -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Fonts/Lobster-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Fonts/Lobster-Regular.ttf -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Fonts/SyneMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Fonts/SyneMono-Regular.ttf -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Images.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Images.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Images.xcassets/logo.imageset/ccheart_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Resources/Images.xcassets/logo.imageset/ccheart_black.svg -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/DesignSystem/Sources/Views/LogoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/DesignSystem/Sources/Views/LogoView.swift -------------------------------------------------------------------------------- /CustomFontsPackage/Sources/FeatureModule/Sources/ModuleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/CustomFontsPackage/Sources/FeatureModule/Sources/ModuleView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/README.md -------------------------------------------------------------------------------- /SwiftUICustomFonts.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/SwiftUICustomFonts.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUICustomFonts.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/SwiftUICustomFonts.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftUICustomFonts.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/SwiftUICustomFonts.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftUICustomFonts/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/SwiftUICustomFonts/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SwiftUICustomFonts/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/SwiftUICustomFonts/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftUICustomFonts/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/SwiftUICustomFonts/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUICustomFonts/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/SwiftUICustomFonts/ContentView.swift -------------------------------------------------------------------------------- /SwiftUICustomFonts/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/SwiftUICustomFonts/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUICustomFonts/SwiftUICustomFontsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgale/SwiftUICustomFonts/HEAD/SwiftUICustomFonts/SwiftUICustomFontsApp.swift --------------------------------------------------------------------------------