Advertisement
Kodos

kcolors.lua

Jan 9th, 2015
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. kcolors = {
  2.  
  3. white = 0xFFFFFF,
  4. orange = 0xFFAA00,
  5. magenta = 0xFF55FF,
  6. lightblue = 0x55FFFF,
  7. yellow = 0xFFFF00,
  8. lime = 0x55FF55,
  9. pink = 0xFF5555,
  10. gray = 0x555555,
  11. lightgray = 0xAAAAAA,
  12. cyan = 0x00AAAA,
  13. purple = 0xAA00AA,
  14. blue = 0x5555FF,
  15. brown = 0x421010,
  16. green = 0x00AA00,
  17. red = 0xAA0000,
  18. black = 0x000000
  19. }
  20.  
  21. return kcolors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement