Skip to content

Instantly share code, notes, and snippets.

@mono0926
Last active September 27, 2016 01:22
Show Gist options
  • Save mono0926/00ef399d5055aff7d583e9a44052f3cd to your computer and use it in GitHub Desktop.
Save mono0926/00ef399d5055aff7d583e9a44052f3cd to your computer and use it in GitHub Desktop.
import UIKit
extension UIColor {
struct JoinUs {
private init() {}
/** #6DC19E */
static let theme = #colorLiteral(red: 0.4274509804, green: 0.7568627451, blue: 0.6196078431, alpha: 1)
/** #FF7700 */
static let notification = #colorLiteral(red: 1, green: 0.4666666667, blue: 0, alpha: 1)
/** #FB7575 */
static let negative = #colorLiteral(red: 0.9843137255, green: 0.4588235294, blue: 0.4588235294, alpha: 1)
/** #2C2C2C */
static let darkBackground = #colorLiteral(red: 0.1725490196, green: 0.1725490196, blue: 0.1725490196, alpha: 1)
/** #575757 */
static let darkLightBackground = #colorLiteral(red: 0.3411764706, green: 0.3411764706, blue: 0.3411764706, alpha: 1)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment