├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE.txt ├── Package.swift ├── README.md ├── Sources └── Gradiente │ └── Gradiente.swift ├── Tests └── GradienteTests │ └── GradienteTests.swift └── readme-images ├── gradiente-colors-bottom.png ├── gradiente-colors-top.png ├── gradiente-gradient-bottom.png ├── gradiente-gradient-top.png └── gradiente-logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Gradiente/Gradiente.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/Sources/Gradiente/Gradiente.swift -------------------------------------------------------------------------------- /Tests/GradienteTests/GradienteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/Tests/GradienteTests/GradienteTests.swift -------------------------------------------------------------------------------- /readme-images/gradiente-colors-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/readme-images/gradiente-colors-bottom.png -------------------------------------------------------------------------------- /readme-images/gradiente-colors-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/readme-images/gradiente-colors-top.png -------------------------------------------------------------------------------- /readme-images/gradiente-gradient-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/readme-images/gradiente-gradient-bottom.png -------------------------------------------------------------------------------- /readme-images/gradiente-gradient-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/readme-images/gradiente-gradient-top.png -------------------------------------------------------------------------------- /readme-images/gradiente-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letvarhq/Gradiente/HEAD/readme-images/gradiente-logo.png --------------------------------------------------------------------------------