Last active
August 29, 2015 14:11
-
-
Save diegs/0ab6256ee5d2e1611dfb to your computer and use it in GitHub Desktop.
Tomorrow Night theme for Chrome SSH
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
| term_.prefs_.set('cursor-blink', true); | |
| term_.prefs_.set('font-family', 'Inconsolata') | |
| term_.prefs_.set('background-color', '#1d1f21'); | |
| term_.prefs_.set('foreground-color', '#c5c8c6'); | |
| term_.prefs_.set('cursor-color', 'rgba(200, 200, 200, 0.5)') | |
| term_.prefs_.set('color-palette-overrides', [ | |
| '#373b41', // selection | |
| '#cc6666', // red | |
| '#b5bd68', // green | |
| '#f0c674', // yellow | |
| '#81a2be', // blue | |
| '#b294bb', // purple | |
| '#8abeb7', // aqua | |
| '#c5c8c6', // foreground | |
| '#373b41', // selection | |
| '#cc6666', // red | |
| '#b5bd68', // green | |
| '#f0c674', // yellow | |
| '#81a2be', // blue | |
| '#b294bb', // purple | |
| '#8abeb7', // aqua | |
| '#c5c8c6' // foreground | |
| ]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment