Last active
October 5, 2022 15:36
-
-
Save jonchurch/890418f7b6165ba2899dee4c5c195a14 to your computer and use it in GitHub Desktop.
Dracula theme for Chrome Secure Shell, for all of us using crouton!
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
// Paste this whole file into your Chrome Secure Shell window's inspect console, and run it! | |
term_.prefs_.set('enable-bold', false) | |
term_.prefs_.set('background-color', "#282a36"); | |
term_.prefs_.set('foreground-color', "#f8f8f2"); | |
term_.prefs_.set('color-palette-overrides', [ | |
"#000000", | |
"#ff5555", | |
"#50fa7b", | |
"#f1fa8c", | |
"#caa9fa", | |
"#ff79c6", | |
"#8be9fd", | |
"#bfbfbf", | |
"#4d4d4d", | |
"#ff6e67", | |
"#5af78e", | |
"#f4f99d", | |
"#caa9fa", | |
"#ff92d0", | |
"#9aedfe", | |
"#e6e6e6" | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment