Last active
November 20, 2017 13:10
-
-
Save Nattefrost/25a224b5cd4a3cf89b5b5d0dcf32b03e to your computer and use it in GitHub Desktop.
ZerobraneStudio Lua IDE colour theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Add this to the table 'colors' in /opt/zbstudio/cfg/tomorrow.lua | |
Nattefrost = { -- Nattefrost | |
Background = H'01000c', -- very dark blue | |
CurrentLine = H'293739', | |
Selection = H'49483E', | |
Foreground = H'F8F8F2', -- super-light-gray (everything else) | |
Comment = H'374DCC', -- bright green (comments) | |
Red = H'c2ddea', -- red(numbers) | |
Orange = H'AE81FF', -- lavendar?? (numbers) | |
Yellow = H'F8F8F2', -- light-gray | |
Green = H'FF8000', -- amber (string literal) | |
Aqua = H'41EA8A', -- light green (operators, separators etc.) | |
Blue = H'DA24F2', -- purple (keywords) | |
Purple = H'A6E22E', -- light-grass-green | |
}, | |
-- Then in user.lua | |
styles = loadfile('cfg/tomorrow.lua')('Nattefrost') | |
stylesoutshell = styles -- apply the same scheme to Output/Console windows | |
styles.auxwindow = styles.text -- apply text colors to auxiliary windows | |
styles.calltip = styles.text -- apply text colors to tooltips |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment