Skip to content

Instantly share code, notes, and snippets.

@giulioungaretti
Forked from petrhosek/pref.js
Last active August 29, 2015 14:25
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 giulioungaretti/a5f0e7aa78a9523d581d to your computer and use it in GitHub Desktop.
Save giulioungaretti/a5f0e7aa78a9523d581d to your computer and use it in GitHub Desktop.
Set up Chrome Secure Shell to handle Base16 Default terminal colors
// Disable bold.
term_.prefs_.set('enable-bold', false);
// Use this for base16-default.
term_.prefs_.set('background-color', "#151515");
term_.prefs_.set('foreground-color', "#d0d0d0");
term_.prefs_.set('cursor-color', '#d0d0d0');
term_.prefs_.set('color-palette-overrides', [
'#151515',
'#ac4142',
'#90a959',
'#f4bf75',
'#6a9fb5',
'#aa759f',
'#75b5aa',
'#d0d0d0',
'#505050',
'#d28445',
'#202020',
'#303030',
'#b0b0b0',
'#e0e0e0',
'#8f5536',
'#f5f5f5'
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment