Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/Gradients/Gradients

πŸŒ” A curated collection of splendid 180+ gradients made in swift
https://github.com/Gradients/Gradients

carthage cocoapods design gradient ios layer palette swift swift4 ui ux webgradients

Last synced: about 2 months ago
JSON representation

πŸŒ” A curated collection of splendid 180+ gradients made in swift

Lists

README

        

# Gradients

πŸŒ” A curated collection of 180 splendid gradients made in swift

![logo](README/gradients.png)

[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
![Swift](https://img.shields.io/badge/Swift-5.0-orange.svg)
[![Swift Package Manager](https://img.shields.io/badge/Swift_Package_Manager-compatible-orange)](https://img.shields.io/badge/Swift_Package_Manager-compatible-orange)
[![Version](https://img.shields.io/cocoapods/v/Gradients.svg?style=flat)](http://cocoapods.org/pods/Gradients)
[![License](https://img.shields.io/cocoapods/l/Gradients.svg?style=flat)](http://cocoapods.org/pods/Gradients)
[![Platform](https://img.shields.io/cocoapods/p/Gradients.svg?style=flat)](http://cocoapods.org/pods/Gradients)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)

180 splendid Gradients inspired by [itmeo/webgradients](https://github.com/itmeo/webgradients)
[View all the gradients here Β»](https://webgradients.com)

## πŸ„πŸΌ Easy To Use
```swift
view.layer.addSubLayer(Gradients.deepBlue.layer)
```

#### 180+ Gradients
```swift
public enum Gradients: Int, CaseIterable {
case warmFlame = 1
case nightFade
case springWarmth
case juicyPeach
//...
case fabledSunset
case perfectBlue
}
```

#### Direction
```swift
public enum Direction {
case top
case left
case right
case bottom
case degree(CGFloat)
}
```

## 🎨 Customize

![customize](README/custom.png)
```swift
// degree for radian direction supported
let customLayer = Gradients.linear(to: .degree(-225), colors: [0x231557, 0x44107A, 0xFF1361, 0xFFF800], locations: [0.0, 0.29, 0.67, 1.0]) // Fabled Sunset
view.layer.addSubLayer(customLayer)
```

## Examples
* [Comets](https://github.com/cruisediary/Comets): β˜„οΈComets: Animating Particles in Swift.
* [DeliTodo](https://github.com/kawoou/DeliTodo): Todo application for iOS using Deli.

## Requirements
Gradients is written in Xcode 10, Swift 4+, iOS 9.0+ Required

## πŸ“² Installation
Gradients is available through [Swift Package Manager](https://www.swift.org/package-manager/), [Cocoapods](http://cocoapods.org) or [Carthage](https://github.com/Carthage/Carthage)

### Swift Package Manager (Recommended)
```
dependencies: [
.package(url: "https://github.com/Gradients/Gradients.git", .upToNextMajor(from: "0.3.1"))
]
```

### Cocoapods
```ruby
pod "Gradients"
```

### Carthage
```
github "cruisediary/Gradients" ~> 0.3.1
```

## ❀️ Contribution
Pull requests are always welcomed πŸ„πŸΌ

## Awesome
* [awesome-swift](https://github.com/matteocrippa/awesome-swift) - A collaborative list of awesome Swift libraries and resources. Feel free to contribute!
* [awesome-gradient](https://github.com/cruisediary/awesome-gradient) - 🌈 A curated list of awesome Gradient frameworks, libraries and software and resources

## πŸ‘¨β€πŸ’» Author
cruz, [email protected]

## πŸ›‘ License

Gradients is available under the MIT license. See the LICENSE file for more info.