Skip to content

Instantly share code, notes, and snippets.

@jocafa
Created March 9, 2010 22:13
Show Gist options
  • Save jocafa/327198 to your computer and use it in GitHub Desktop.
Save jocafa/327198 to your computer and use it in GitHub Desktop.
var terminalSetFontFG256 = function (fg) {
sys.print(TERM_ESCAPE + '38;5;' + fg + 'm');
};
var terminalSetFontBG256 = function (bg) {
sys.print(TERM_ESCAPE + '48;5;' + bg + 'm');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment