Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save serhiybutz/c3d38ad0fdf015036177c45dddeef949 to your computer and use it in GitHub Desktop.
Save serhiybutz/c3d38ad0fdf015036177c45dddeef949 to your computer and use it in GitHub Desktop.
extension MyThemeSettings {
static let lightTheme = MyThemeSettings(
appBgColor: .white,
highlightedBgColor: .lightGray,
textColor: .black
)
static let darkTheme = MyThemeSettings(
appBgColor: .gray,
highlightedBgColor: .darkGray,
textColor: .white
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment