Created
August 19, 2016 09:56
-
-
Save cocoaNib/8cc069bd32bd8d7ff9f5f0a5b33f4657 to your computer and use it in GitHub Desktop.
AppAppearance.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
// MARK: Appearance | |
extension AppDelegate { | |
func styleAppAppearance() { | |
// Define general style | |
} | |
} | |
// MARK: Color | |
struct Color { | |
struct Text { | |
static let Default = UIColor(hex: "#FFF2CC") | |
} | |
struct Background { | |
static let Default = UIColor(hex: "#000") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment