Skip to content

Instantly share code, notes, and snippets.

@jgallen23
Created December 27, 2017 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgallen23/5cd93c3cf971085cd1bdf220945b7fbe to your computer and use it in GitHub Desktop.
Save jgallen23/5cd93c3cf971085cd1bdf220945b7fbe to your computer and use it in GitHub Desktop.
solarized light secure shell
// prefs.js Template
// Petr Hosek(http://petrhosek.name)
/*
color00="fd/f6/e3" # Base 00 - Black
color01="dc/32/2f" # Base 08 - Red
color02="85/99/00" # Base 0B - Green
color03="b5/89/00" # Base 0A - Yellow
color04="26/8b/d2" # Base 0D - Blue
color05="6c/71/c4" # Base 0E - Magenta
color06="2a/a1/98" # Base 0C - Cyan
color07="58/6e/75" # Base 05 - White
color08="83/94/96" # Base 03 - Bright Black
color09=$color01 # Base 08 - Bright Red
color10=$color02 # Base 0B - Bright Green
color11=$color03 # Base 0A - Bright Yellow
color12=$color04 # Base 0D - Bright Blue
color13=$color05 # Base 0E - Bright Magenta
color14=$color06 # Base 0C - Bright Cyan
color15="00/2b/36" # Base 07 - Bright White
color16="cb/4b/16" # Base 09
color17="d3/36/82" # Base 0F
color18="ee/e8/d5" # Base 01
color19="93/a1/a1" # Base 02
color20="65/7b/83" # Base 04
color21="07/36/42" # Base 06
color_foreground="58/6e/75" # Base 05
color_background="fd/f6/e3" # Base 00
*/
term_.prefs_.set('background-color', '#fdf6e3');
term_.prefs_.set('foreground-color', '#586e75');
term_.prefs_.set('cursor-color', '#586e75');
term_.prefs_.set('color-palette-overrides', [
'#fdf6e3',
'#dc322f',
'#859900',
'#b58900',
'#268bd2',
'#6c71c4',
'#2aa198',
'#586e75',
'#839496',
'#dc322f',
'#859900',
'#b58900',
'#268bd2',
'#6c71c4',
'#2aa198',
'#002b36',
'#cb4b16',
'#d33682',
'#eee8d5',
'#93a1a1',
'#657b83',
'#073642'
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment