Advertisement
derkoch

config v1.0

Oct 14th, 2013
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.19 KB | None | 0 0
  1. --- Text color
  2. -- @class table
  3. -- @name defaulTextColor
  4. -- @field defaulTextColor the default text color: <code>colors.white</code>
  5. defaulTextColor = colors.white
  6.  
  7.  
  8. --- Background color
  9. -- @class table
  10. -- @name defaultBackgroundColor
  11. -- @field defaultBackgroundColor the default background color: <code>colors.black</code>
  12. defaultBackgroundColor = colors.black
  13.  
  14. --- Activated button color
  15. -- @class table
  16. -- @name defaultBtnActiveBackground
  17. -- @field defaultBtnActiveBackground the default color for an actived button: <code>colors.lime</code>
  18. defaultBtnActiveBackground = colors.lime
  19.  
  20. --- Deactivated button color
  21. -- @class table
  22. -- @name defaultBtnNonActiveBackground
  23. -- @field defaultBtnNonActiveBackground the default color for an deactived button: <code>colors.red</code>
  24. defaultBtnNonActiveBackground = colors.red
  25.  
  26. --- Horizontal text position
  27. -- @class table
  28. -- @name defaultHPosition
  29. -- @field defaultHPosition the default horizontal text position. <code>center</code>
  30. defaultHPosition = "center"
  31.  
  32. --- Vertical text position
  33. -- @class table
  34. -- @name defaultVPosition
  35. -- @field defaultVPosition the default vertical text position: <code>center</code>
  36. defaultVPosition = "center"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement