Kodos 3 Posted January 9, 2015 Share Posted January 9, 2015 I got tired of having to remember which color was which number on the default colors lib, so I made my own library so I could easily just call things like 'red' or 'lightblue' instead of 14 or whatever number the color I needed was. Finally got it working, so I figured I'd share it. Feel free to do whatever you want with it. kcolors = { white = 0xFFFFFF, orange = 0xFFAA00, magenta = 0xFF55FF, lightblue = 0x55FFFF, yellow = 0xFFFF00, lime = 0x55FF55, pink = 0xFF5555, gray = 0x555555, lightgray = 0xAAAAAA, cyan = 0x00AAAA, purple = 0xAA00AA, blue = 0x5555FF, brown = 0x421010, green = 0x00AA00, red = 0xAA0000, black = 0x000000 } return kcolors Pastebin for the lazy: pastebin get 01ZrHdgk /lib/kcolors.lua Quote Link to post Share on other sites