Skip to content

Instantly share code, notes, and snippets.

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