Files
OpenSourceController/Sources/Utils/Style.swift
T
2019-11-11 16:56:30 +01:00

28 lines
565 B
Swift

//
// UIColor+Extension.swift
// OpenSourceControllerDemo
//
// Created by Florian Gabach on 11/11/2019.
// Copyright © 2019 OpenSourceController. All rights reserved.
//
import UIKit
struct Style {
static var background: UIColor {
if #available(iOS 13.0, *) {
return UIColor.systemBackground
} else {
return UIColor.black
}
}
static var label: UIColor {
if #available(iOS 13.0, *) {
return UIColor.label
} else {
return UIColor.black
}
}
}