PwnagePineapple

OpenGlasses Color Preset Library

Oct 14th, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.56 KB | None | 0 0
  1. local ogcolor = {}
  2.  
  3. --Define color presets
  4. ogcolor.red = { 1, 0, 0}
  5. ogcolor.green = { 0, 1, 0}
  6. ogcolor.lime = { 50/255,205/255, 50/255}
  7. ogcolor.blue = { 0, 0, 1}
  8. ogcolor.orange = { 1, 165/255, 0}
  9. ogcolor.yellow = { 1, 1, 0}
  10. ogcolor.light_blue = { 173/255,  216/255,  230/255}
  11. ogcolor.magenta = { 1, 0, 1}
  12. ogcolor.pink = { 1, 192/255, 203/255}
  13. ogcolor.white = { 1, 1, 1}
  14. ogcolor.light_grey = { 211/255, 211/255, 211/255}
  15. ogcolor.grey = { 0.5, 0.5, 0.5}
  16. ogcolor.black = { 0, 0, 0}
  17. ogcolor.cyan = { 0, 1, 1}
  18. ogcolor.purple = { 0.5, 0, 0.5}
  19.  
  20. return ogcolor
Advertisement
Add Comment
Please, Sign In to add comment