Skip to content

Instantly share code, notes, and snippets.

@jdloft
Forked from johnbender/prefs.js
Last active February 25, 2019 06:14
Show Gist options
  • Save jdloft/81e1e39a34ced8af9982632840db5786 to your computer and use it in GitHub Desktop.
Save jdloft/81e1e39a34ced8af9982632840db5786 to your computer and use it in GitHub Desktop.
Set up Chrome's Secure Shell extension to use solarized terminal colors
// Disable bold.
term_.prefs_.set('enable-bold', false)
// Solarized Dark
term_.prefs_.set('background-color', "#002b36");
term_.prefs_.set('foreground-color', "#839496");
term_.prefs_.set('cursor-color', "rgba(147, 161, 161, 0.5)");
// Solarized Light
//term_.prefs_.set('background-color', "#fdf6e3");
//term_.prefs_.set('foreground-color', "#657b83");
//term_.prefs_.set('cursor-color', "rgba(88, 110, 117, 0.5)");
term_.prefs_.set('color-palette-overrides', [
'#073642',
'#dc322f',
'#859900',
'#b58900',
'#268bd2',
'#d33682',
'#2aa198',
'#eee8d5',
'#002b36',
'#cb4b16',
'#586e75',
'#657b83',
'#839496',
'#6c71c4',
'#93a1a1',
'#fdf6e3'
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment