Swiftgram/Display/Theme.swift
2017-03-21 19:58:45 +03:00

10 lines
168 B
Swift

import Foundation
public class Theme {
public let accentColor: UIColor
public init(accentColor: UIColor) {
self.accentColor = accentColor
}
}