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