Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. /**
  2. * Represents white dye.
  3. */
  4. WHITE(0x0, 0xF, Color.WHITE, Color.fromRGB(0xF0F0F0)),
  5. /**
  6. * Represents orange dye.
  7. */
  8. ORANGE(0x1, 0xE, Color.fromRGB(0xD87F33), Color.fromRGB(0xEB8844)),
  9. /**
  10. * Represents magenta dye.
  11. */
  12. MAGENTA(0x2, 0xD, Color.fromRGB(0xB24CD8), Color.fromRGB(0xC354CD)),
  13. /**
  14. * Represents light blue dye.
  15. */
  16. LIGHT_BLUE(0x3, 0xC, Color.fromRGB(0x6699D8), Color.fromRGB(0x6689D3)),
  17. /**
  18. * Represents yellow dye.
  19. */
  20. YELLOW(0x4, 0xB, Color.fromRGB(0xE5E533), Color.fromRGB(0xDECF2A)),
  21. /**
  22. * Represents lime dye.
  23. */
  24. LIME(0x5, 0xA, Color.fromRGB(0x7FCC19), Color.fromRGB(0x41CD34)),
  25. /**
  26. * Represents pink dye.
  27. */
  28. PINK(0x6, 0x9, Color.fromRGB(0xF27FA5), Color.fromRGB(0xD88198)),
  29. /**
  30. * Represents gray dye.
  31. */
  32. GRAY(0x7, 0x8, Color.fromRGB(0x4C4C4C), Color.fromRGB(0x434343)),
  33. /**
  34. * Represents silver dye.
  35. */
  36. SILVER(0x8, 0x7, Color.fromRGB(0x999999), Color.fromRGB(0xABABAB)),
  37. /**
  38. * Represents cyan dye.
  39. */
  40. CYAN(0x9, 0x6, Color.fromRGB(0x4C7F99), Color.fromRGB(0x287697)),
  41. /**
  42. * Represents purple dye.
  43. */
  44. PURPLE(0xA, 0x5, Color.fromRGB(0x7F3FB2), Color.fromRGB(0x7B2FBE)),
  45. /**
  46. * Represents blue dye.
  47. */
  48. BLUE(0xB, 0x4, Color.fromRGB(0x334CB2), Color.fromRGB(0x253192)),
  49. /**
  50. * Represents brown dye.
  51. */
  52. BROWN(0xC, 0x3, Color.fromRGB(0x664C33), Color.fromRGB(0x51301A)),
  53. /**
  54. * Represents green dye.
  55. */
  56. GREEN(0xD, 0x2, Color.fromRGB(0x667F33), Color.fromRGB(0x3B511A)),
  57. /**
  58. * Represents red dye.
  59. */
  60. RED(0xE, 0x1, Color.fromRGB(0x993333), Color.fromRGB(0xB3312C)),
  61. /**
  62. * Represents black dye.
  63. */
  64. BLACK(0xF, 0x0, Color.fromRGB(0x191919), Color.fromRGB(0x1E1B1B));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement