Advertisement
Guest User

Untitled

a guest
Feb 21st, 2014
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. local availableThemes = {
  2. ["Water (Default)"] = { -- Water Theme
  3. background = 0xBEBEBE,
  4. backgroundHighlight = 0xD3D3D3,
  5. prompt = 0x00FFFF,
  6. promptHighlight = 0xADD8E6,
  7.  
  8. err = 0xFF0000,
  9. errHighlight = 0xFFC0CB,
  10.  
  11. editorBackground = 0xBEBEBE,
  12. editorLineHightlight = 0xADD8E6,
  13. editorLineNumbers = 0xBEBEBE,
  14. editorLineNumbersHighlight = 0xD3D3D3,
  15. editorError = 0xFFC0CB,
  16. editorErrorHighlight = 0xFF0000,
  17.  
  18. textColor = 0xFFFFFF,
  19. conditional = 0xFFFF00,
  20. constant = 0xFFA500,
  21. ["function"] = 0xFF00FF,
  22. string = 0xFF0000,
  23. comment = 0x32CD32
  24. },
  25. ["Fire"],
  26. ["Sublime Text 2"],
  27. ["Midnight"],
  28. ["TheOriginalBIT"],
  29. ["Superaxander"],
  30. ["Forest"],
  31. ["Night"],
  32. ["Original"],
  33. }
  34. local normalTheme = {
  35. background = 0x000000,
  36. backgroundHighlight = 0x000000,
  37. prompt = 0x000000,
  38. promptHighlight = 0x000000,
  39. err = 0x000000,
  40. errHighlight = 0x000000,
  41. editorBackground = 0x000000,
  42. editorLineHightlight = 0x000000,
  43. editorLineNumbers = 0x000000,
  44. editorLineNumbersHighlight = 0xFFFFFF,
  45. editorError = 0x000000,
  46. editorErrorHighlight = 0x000000,
  47. textColor = 0xFFFFFF,
  48. conditional = 0xFFFFFF,
  49. constant = 0xFFFFFF,
  50. ["function"] = 0xFFFFFF,
  51. string = 0xFFFFFF,
  52. comment = 0xFFFFFF
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement