Skip to content

Instantly share code, notes, and snippets.

@diegs
Last active December 23, 2015 22:29
Show Gist options
  • Select an option

  • Save diegs/6703522 to your computer and use it in GitHub Desktop.

Select an option

Save diegs/6703522 to your computer and use it in GitHub Desktop.
IR_Black theme for Chrome SSH Terminal. Based on https://github.com/twerth/ir_black
// Font size.
term_.prefs_.set('font-size', 13)
// Boldness.
term_.prefs_.set('enable-bold', true)
// Colors.
term_.prefs_.set('background-color', "#000000");
term_.prefs_.set('foreground-color', "#dcdccc");
term_.prefs_.set('cursor-color', 'rgba(255, 255, 255, 0.5)');
term_.prefs_.set('color-palette-overrides', [
'#4e4e4e', // black
'#ff6c60', // red
'#a8ff60', // green
'#ffffb6', // yellow
'#96cbfe', // blue
'#ff73fd', // magenta
'#c6c5fe', // cyan
'#eeeeee', // white
'#7c7c7c', // brblack
'#ffb6b0', // brred
'#ceffab', // brgreen
'#ffffcb', // bryellow
'#b5dcfe', // brblue
'#ff9cfe', // brmagenta
'#dfdffe', // brcyan
'#ffffff' // brwhite
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment