Skip to content

Instantly share code, notes, and snippets.

@tiagomartinho
Created June 13, 2018 09:51
Show Gist options
  • Save tiagomartinho/36235c211f17c13064371a7f8f80dac8 to your computer and use it in GitHub Desktop.
Save tiagomartinho/36235c211f17c13064371a7f8f80dac8 to your computer and use it in GitHub Desktop.
Theme
import UIKit
protocol Theme {
var name: ThemeName { get }
var tintColor: UIColor { get }
var barStyle: UIBarStyle { get }
var keyboardAppearance: UIKeyboardAppearance { get }
var backgroundColor: UIColor { get }
var secondaryBackgroundColor: UIColor { get }
var negativeBackgroundColor: UIColor { get }
var titleTextColor: UIColor { get }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment