Skip to content

Instantly share code, notes, and snippets.

@jeanetienne
Last active June 3, 2020 04:06
Show Gist options
  • Save jeanetienne/27cad9ea2c411cdf77d0b715b21e58f0 to your computer and use it in GitHub Desktop.
Save jeanetienne/27cad9ea2c411cdf77d0b715b21e58f0 to your computer and use it in GitHub Desktop.
//
// Some styling architecture
//
class DefaultTheme {
enum Color {
static let primary: UIColor = .white
static let secondary: UIColor = .gray
}
}
class DarkTheme: DefaultTheme {
enum Color {
static let primary: UIColor = .black
}
}
func main() {
view.backgroundColor = DarkTheme.Color.secondary
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment