GBA001/Delta/Extensions/UIColor+Delta.swift
Riley Testut d3b4f25f20 Replaces light theme with “opaque” dark theme
Previous dark theme has been renamed “translucent”
2016-11-22 19:57:39 -08:00

28 lines
587 B
Swift

//
// UIColor+Delta.swift
// Delta
//
// Created by Riley Testut on 12/26/15.
// Copyright © 2015 Riley Testut. All rights reserved.
//
import UIKit
extension UIColor
{
class func deltaPurpleColor() -> UIColor
{
return UIColor(red: 120.0/255.0, green: 32.0/255.0, blue: 157.0/255.0, alpha: 1.0)
}
class func deltaLightPurpleColor() -> UIColor
{
return UIColor(red: 184.0/255.0, green: 97.0/255.0, blue: 253.0/255.0, alpha: 1.0)
}
}
class var deltaDarkGray: UIColor
{
return UIColor(white: 0.15, alpha: 1.0)
}
}