Skip to content

Instantly share code, notes, and snippets.

@damianpetla
Created January 9, 2022 20:43
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 damianpetla/b4719d0446a591fe4e59a8665694c91c to your computer and use it in GitHub Desktop.
Save damianpetla/b4719d0446a591fe4e59a8665694c91c to your computer and use it in GitHub Desktop.
// somewhere in your theming code
val Colors.mySpecialColor: Color
get() = if (isLight) Color.Black else Color.White
// somewhere in the layouts
Surface(color = MaterialTheme.colors.mySpecialColor) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment