Created
July 1, 2013 00:07
-
-
Save petrhosek/5897578 to your computer and use it in GitHub Desktop.
Set up Chrome Secure Shell to handle Base16 Default terminal colors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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