vds_ios/VDS/Protocols/Surfaceable.swift
Matt Bruce 21ac83af4f removed codable
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-01-25 11:50:11 -06:00

22 lines
413 B
Swift

//
// Surfaceable.swift
// VDS
//
// Created by Matt Bruce on 7/26/22.
//
import Foundation
import UIKit
import VDSColorTokens
public enum Surface: String, Equatable {
case light, dark
public var color: UIColor {
return self == .dark ? VDSColor.backgroundPrimaryDark : VDSColor.backgroundSecondaryLight
}
}
public protocol Surfaceable: AnyObject {
var surface: Surface { get set }
}