- 
      
 - 
        
Save jdloft/81e1e39a34ced8af9982632840db5786 to your computer and use it in GitHub Desktop.  
    Set up Chrome's Secure Shell extension to use solarized terminal colors
  
        
  
    
      This file contains hidden or 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) | |
| // 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