Skip to content

Instantly share code, notes, and snippets.

@pablobaldez
Created April 20, 2021 14:37
Show Gist options
  • Save pablobaldez/37c1f7ad8fbf6e3ca4a4c79cb7d146c4 to your computer and use it in GitHub Desktop.
Save pablobaldez/37c1f7ad8fbf6e3ca4a4c79cb7d146c4 to your computer and use it in GitHub Desktop.
Group interface
interface Group<T> {
/**
* the light mode group of colors
*/
val light: T
/**
* the dark mode group of colors
*/
val dark: T
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment