Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. import androidx.annotation.ColorInt
  2.  
  3. object MaterialColors {
  4. @ColorInt const val RED = 0xfff44336.toInt()
  5. @ColorInt const val PINK = 0xffe91e63.toInt()
  6. @ColorInt const val PURPLE = 0xff9c27b0.toInt()
  7. @ColorInt const val DEEP_PURPLE = 0xff673ab7.toInt()
  8. @ColorInt const val INDIGO = 0xff3f51b5.toInt()
  9. @ColorInt const val BLUE = 0xff2196f3.toInt()
  10. @ColorInt const val LIGHT_BLUE = 0xff03a9f4.toInt()
  11. @ColorInt const val CYAN = 0xff03a9f4.toInt()
  12. @ColorInt const val TEAL = 0xff009688.toInt()
  13. @ColorInt const val GREEN = 0xff4caf50.toInt()
  14. @ColorInt const val LIGHT_GREEN = 0xff8bc34a.toInt()
  15. @ColorInt const val LIME = 0xffcddc39.toInt()
  16. @ColorInt const val YELLOW = 0xffffeb3b.toInt()
  17. @ColorInt const val AMBER = 0xffffc107.toInt()
  18. @ColorInt const val ORANGE = 0xffff9800.toInt()
  19. @ColorInt const val DEEP_ORANGE = 0xffff5722.toInt()
  20. @ColorInt const val BROWN = 0xff795548.toInt()
  21. @ColorInt const val GREY = 0xff9e9e9e.toInt()
  22. @ColorInt const val BLUE_GREY = 0xff607d8b.toInt()
  23.  
  24. val COLOR_LIST = listOf(RED, PINK, PURPLE, DEEP_PURPLE, INDIGO, BLUE, LIGHT_BLUE, CYAN, TEAL, GREEN, LIGHT_GREEN, LIME, YELLOW, AMBER, ORANGE, DEEP_ORANGE, BROWN, GREY, BLUE_GREY)
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement