├── .github └── workflows │ └── build.yml ├── .gitignore ├── .swiftlint.yml ├── .swiftpm └── xcode │ ├── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── FigmaKit.xcscheme ├── Example └── FigmaKitExample │ ├── .swiftlint.yml │ ├── FigmaKitExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── FigmaKitExample.xcscheme │ ├── FigmaKitExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── ic_back.imageset │ │ │ ├── Contents.json │ │ │ ├── Vector.png │ │ │ ├── Vector@2x.png │ │ │ └── Vector@3x.png │ │ ├── ic_eye.imageset │ │ │ ├── Contents.json │ │ │ ├── Vector.png │ │ │ ├── Vector@2x.png │ │ │ └── Vector@3x.png │ │ ├── ic_facebook.imageset │ │ │ ├── Contents.json │ │ │ ├── Slice 2.png │ │ │ ├── Slice 2@2x.png │ │ │ └── Slice 2@3x.png │ │ ├── ic_google.imageset │ │ │ ├── Contents.json │ │ │ ├── Slice 2g.png │ │ │ ├── Slice 2g@2x.png │ │ │ └── Slice 2g@3x.png │ │ ├── ic_square.imageset │ │ │ ├── Contents.json │ │ │ ├── Rectangle 213.png │ │ │ ├── Rectangle 213@2x.png │ │ │ └── Rectangle 213@3x.png │ │ ├── ic_tick.imageset │ │ │ ├── Contents.json │ │ │ ├── Vector 9.png │ │ │ ├── Vector 9@2x.png │ │ │ └── Vector 9@3x.png │ │ ├── ic_ticked.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 451.png │ │ │ ├── Group 451@2x.png │ │ │ └── Group 451@3x.png │ │ └── register_bg.imageset │ │ │ ├── Contents.json │ │ │ ├── Slice 1.png │ │ │ ├── Slice 1@2x.png │ │ │ └── Slice 1@3x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Extensions.swift │ ├── Info.plist │ ├── RegisterViewController.swift │ ├── Resources │ │ └── Fonts │ │ │ ├── Roboto │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ │ │ └── SFPro │ │ │ ├── SF-Pro-Display-Black.otf │ │ │ ├── SF-Pro-Display-BlackItalic.otf │ │ │ ├── SF-Pro-Display-Bold.otf │ │ │ ├── SF-Pro-Display-BoldItalic.otf │ │ │ ├── SF-Pro-Display-Heavy.otf │ │ │ ├── SF-Pro-Display-HeavyItalic.otf │ │ │ ├── SF-Pro-Display-Light.otf │ │ │ ├── SF-Pro-Display-LightItalic.otf │ │ │ ├── SF-Pro-Display-Medium.otf │ │ │ ├── SF-Pro-Display-MediumItalic.otf │ │ │ ├── SF-Pro-Display-Regular.otf │ │ │ ├── SF-Pro-Display-RegularItalic.otf │ │ │ ├── SF-Pro-Display-Semibold.otf │ │ │ ├── SF-Pro-Display-SemiboldItalic.otf │ │ │ ├── SF-Pro-Display-Thin.otf │ │ │ ├── SF-Pro-Display-ThinItalic.otf │ │ │ ├── SF-Pro-Display-Ultralight.otf │ │ │ ├── SF-Pro-Display-UltralightItalic.otf │ │ │ ├── SF-Pro-Italic.ttf │ │ │ └── SF-Pro.ttf │ ├── SceneDelegate.swift │ └── StartUpViewController.swift │ ├── FigmaKitExampleTests │ ├── FigmaKitExampleTests.swift │ └── Info.plist │ └── FigmaKitExampleUITests │ ├── FigmaKitExampleUITests.swift │ └── Info.plist ├── FigmaKit.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Resources ├── corners.png ├── design.png ├── figma_design.png ├── fills.png ├── sample1.png ├── screenshot1.png ├── shadows.png ├── simulator.png ├── strokes.png ├── typography1.png └── typos.png ├── Sources └── FigmaKit │ ├── Elements │ ├── ColorType.swift │ ├── Edges.swift │ ├── Font.swift │ ├── Helpers.swift │ └── Strings.swift │ ├── FigmaKit+UIView.swift │ ├── FigmaKit.swift │ └── Types │ ├── Types.swift │ ├── TypesImplement.swift │ └── Typography.swift ├── Tests ├── FigmaKitTests │ ├── ColorTests.swift │ ├── FigmaKitTests.swift │ └── XCTestManifests.swift └── LinuxMain.swift └── Tools └── build.sh /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/FigmaKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/FigmaKit.xcscheme -------------------------------------------------------------------------------- /Example/FigmaKitExample/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/.swiftlint.yml -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample.xcodeproj/xcshareddata/xcschemes/FigmaKitExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample.xcodeproj/xcshareddata/xcschemes/FigmaKitExample.xcscheme -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_back.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_back.imageset/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_back.imageset/Vector.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_back.imageset/Vector@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_back.imageset/Vector@2x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_back.imageset/Vector@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_back.imageset/Vector@3x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_eye.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_eye.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_eye.imageset/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_eye.imageset/Vector.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_eye.imageset/Vector@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_eye.imageset/Vector@2x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_eye.imageset/Vector@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_eye.imageset/Vector@3x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_facebook.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_facebook.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_facebook.imageset/Slice 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_facebook.imageset/Slice 2.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_facebook.imageset/Slice 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_facebook.imageset/Slice 2@2x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_facebook.imageset/Slice 2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_facebook.imageset/Slice 2@3x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_google.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_google.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_google.imageset/Slice 2g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_google.imageset/Slice 2g.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_google.imageset/Slice 2g@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_google.imageset/Slice 2g@2x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_google.imageset/Slice 2g@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_google.imageset/Slice 2g@3x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_square.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_square.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_square.imageset/Rectangle 213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_square.imageset/Rectangle 213.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_square.imageset/Rectangle 213@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_square.imageset/Rectangle 213@2x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_square.imageset/Rectangle 213@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_square.imageset/Rectangle 213@3x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_tick.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_tick.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_tick.imageset/Vector 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_tick.imageset/Vector 9.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_tick.imageset/Vector 9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_tick.imageset/Vector 9@2x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_tick.imageset/Vector 9@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_tick.imageset/Vector 9@3x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_ticked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_ticked.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_ticked.imageset/Group 451.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_ticked.imageset/Group 451.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_ticked.imageset/Group 451@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_ticked.imageset/Group 451@2x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_ticked.imageset/Group 451@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/ic_ticked.imageset/Group 451@3x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/register_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/register_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/register_bg.imageset/Slice 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/register_bg.imageset/Slice 1.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/register_bg.imageset/Slice 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/register_bg.imageset/Slice 1@2x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/register_bg.imageset/Slice 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Assets.xcassets/register_bg.imageset/Slice 1@3x.png -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Extensions.swift -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Info.plist -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/RegisterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/RegisterViewController.swift -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Black.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-BlackItalic.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Bold.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-BoldItalic.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Heavy.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-HeavyItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-HeavyItalic.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Light.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-LightItalic.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Medium.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-MediumItalic.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Regular.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-RegularItalic.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Semibold.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-SemiboldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-SemiboldItalic.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Thin.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-ThinItalic.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Ultralight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-Ultralight.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-UltralightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Display-UltralightItalic.otf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro-Italic.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/Resources/Fonts/SFPro/SF-Pro.ttf -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExample/StartUpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExample/StartUpViewController.swift -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExampleTests/FigmaKitExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExampleTests/FigmaKitExampleTests.swift -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExampleUITests/FigmaKitExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExampleUITests/FigmaKitExampleUITests.swift -------------------------------------------------------------------------------- /Example/FigmaKitExample/FigmaKitExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Example/FigmaKitExample/FigmaKitExampleUITests/Info.plist -------------------------------------------------------------------------------- /FigmaKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/FigmaKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FigmaKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/FigmaKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/README.md -------------------------------------------------------------------------------- /Resources/corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/corners.png -------------------------------------------------------------------------------- /Resources/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/design.png -------------------------------------------------------------------------------- /Resources/figma_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/figma_design.png -------------------------------------------------------------------------------- /Resources/fills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/fills.png -------------------------------------------------------------------------------- /Resources/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/sample1.png -------------------------------------------------------------------------------- /Resources/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/screenshot1.png -------------------------------------------------------------------------------- /Resources/shadows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/shadows.png -------------------------------------------------------------------------------- /Resources/simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/simulator.png -------------------------------------------------------------------------------- /Resources/strokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/strokes.png -------------------------------------------------------------------------------- /Resources/typography1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/typography1.png -------------------------------------------------------------------------------- /Resources/typos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Resources/typos.png -------------------------------------------------------------------------------- /Sources/FigmaKit/Elements/ColorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/Elements/ColorType.swift -------------------------------------------------------------------------------- /Sources/FigmaKit/Elements/Edges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/Elements/Edges.swift -------------------------------------------------------------------------------- /Sources/FigmaKit/Elements/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/Elements/Font.swift -------------------------------------------------------------------------------- /Sources/FigmaKit/Elements/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/Elements/Helpers.swift -------------------------------------------------------------------------------- /Sources/FigmaKit/Elements/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/Elements/Strings.swift -------------------------------------------------------------------------------- /Sources/FigmaKit/FigmaKit+UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/FigmaKit+UIView.swift -------------------------------------------------------------------------------- /Sources/FigmaKit/FigmaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/FigmaKit.swift -------------------------------------------------------------------------------- /Sources/FigmaKit/Types/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/Types/Types.swift -------------------------------------------------------------------------------- /Sources/FigmaKit/Types/TypesImplement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/Types/TypesImplement.swift -------------------------------------------------------------------------------- /Sources/FigmaKit/Types/Typography.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Sources/FigmaKit/Types/Typography.swift -------------------------------------------------------------------------------- /Tests/FigmaKitTests/ColorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Tests/FigmaKitTests/ColorTests.swift -------------------------------------------------------------------------------- /Tests/FigmaKitTests/FigmaKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Tests/FigmaKitTests/FigmaKitTests.swift -------------------------------------------------------------------------------- /Tests/FigmaKitTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Tests/FigmaKitTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haphanquang/FigmaKit/HEAD/Tools/build.sh --------------------------------------------------------------------------------