Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- These are the available themes, a table
- -- -------- Themes
- local availableThemes = {
- "Water (Default)",
- "Fire",
- "Sublime Text 2",
- "Midnight",
- "TheOriginalBIT",
- "Superaxander",
- "Forest",
- "Night",
- "Original",
- }
- these are the variable names, also a table
- I need to set it up a table so i can use the availableThemes string table to reference the themes variable name table
- local normalTheme = {
- background = 0x000000,
- backgroundHighlight = 0x000000,
- prompt = 0x000000,
- promptHighlight = 0x000000,
- err = 0x000000,
- errHighlight = 0x000000,
- editorBackground = 0x000000,
- editorLineHightlight = 0x000000,
- editorLineNumbers = 0x000000,
- editorLineNumbersHighlight = 0xFFFFFF,
- editorError = 0x000000,
- editorErrorHighlight = 0x000000,
- textColor = 0xFFFFFF,
- conditional = 0xFFFFFF,
- constant = 0xFFFFFF,
- ["function"] = 0xFFFFFF,
- string = 0xFFFFFF,
- comment = 0xFFFFFF
- }
- local defaultTheme = { -- Water Theme
- background = 0xBEBEBE,
- backgroundHighlight = 0xD3D3D3,
- prompt = 0x00FFFF,
- promptHighlight = 0xADD8E6,
- err = 0xFF0000,
- errHighlight = 0xFFC0CB,
- editorBackground = 0xBEBEBE,
- editorLineHightlight = 0xADD8E6,
- editorLineNumbers = 0xBEBEBE,
- editorLineNumbersHighlight = 0xD3D3D3,
- editorError = 0xFFC0CB,
- editorErrorHighlight = 0xFF0000,
- textColor = 0xFFFFFF,
- conditional = 0xFFFF00,
- constant = 0xFFA500,
- ["function"] = 0xFF00FF,
- string = 0xFF0000,
- comment = 0x32CD32
- }
- local fireTheme = { -- Fire Theme
- background=0xBEBEBE,
- backgroundHighlight=0xD3D3D3,
- prompt=0xFF0000,
- promptHighlight=0xFFA500,
- err=0xFF0000,
- errHighlight=0xFFC0CB,
- editorBackground=0xBEBEBE,
- editorLineHightlight=0xFFA500,
- editorLineNumbers=0xBEBEBE,
- editorLineNumbersHighlight=0xD3D3D3,
- editorError=0xFF0000,
- editorErrorHighlight=0xFFC0CB,
- textColor=0xFFFFFF,
- conditional=0xFFFF00,
- constant=0xADD8E6,
- ["function"]=0xFF00FF,
- string=0x0000FF,
- comment=0x32CD32
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement