Files
eqn.ios/Sources/Earthquake Network/UI/AppTheme.swift
T
2020-09-01 19:27:54 +02:00

23 lines
540 B
Swift

//
// AppTheme.swift
// Earthquake Network
//
// Created by Busi Andrea on 31/08/2020.
// Copyright © 2020 Earthquake Network. All rights reserved.
//
import Foundation
@objcMembers
class AppTheme: NSObject {
static let shared = AppTheme()
/// Color used for standard text
var textColor: UIColor = .black
/// Color used for text in a disabled component
var textDisabledColor: UIColor = .lightGray
/// Color used for label that contains value (ex. in settings page)
var valueColor: UIColor = .blue
}