Last active
February 19, 2021 08:26
-
-
Save rendall/8a243970746ae023923502438dd2f69a to your computer and use it in GitHub Desktop.
Night-owl theme for VSCode terminal
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
/* | |
This applies to VSCode *terminal* (not the editor) the color settings | |
for Sarah Drasner's "Night Owl" VSCode color theme: | |
https://github.com/sdras/night-owl-vscode-theme | |
Instructions: | |
1. CTRL+SHIFT+P and type Preferences: Open Settings (JSON) | |
2. In the JSON file add the entry below (or modify it if it already exists) | |
3. Save it! That's all! Open your terminal (CTRL+`) and check it out! | |
NB: These comments are not proper JSON, so don't include them or it | |
will probably throw an error. | |
*/ | |
"workbench.colorCustomizations": { | |
"terminalCursor.foreground": "#80a4c2", | |
"terminalCursor.background": "#1d3b53", | |
"terminal.background": "#011627", | |
"terminal.foreground": "#D6DEEB", | |
"terminal.ansiBlack": "#011627", | |
"terminal.ansiBlue": "#82AAFF", | |
"terminal.ansiCyan": "#21C7A8", | |
"terminal.ansiGreen": "#22DA6E", | |
"terminal.ansiMagenta": "#C792EA", | |
"terminal.ansiRed": "#EF5350", | |
"terminal.ansiWhite": "#FFFFFF", | |
"terminal.ansiYellow": "#ADDB67", | |
"terminal.ansiBrightBlack": "#969696", | |
"terminal.ansiBrightBlue": "#82AAFF", | |
"terminal.ansiBrightCyan": "#7FDBCA", | |
"terminal.ansiBrightGreen": "#22DA6E", | |
"terminal.ansiBrightMagenta": "#C792EA", | |
"terminal.ansiBrightRed": "#EF5350", | |
"terminal.ansiBrightWhite": "#FFFFFF", | |
"terminal.ansiBrightYellow": "#FFEB95", | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment