https://github.com/seanmayer/vscodetheme
Custom dark mode vscode theme.
https://github.com/seanmayer/vscodetheme
Last synced: 3 months ago
JSON representation
Custom dark mode vscode theme.
- Host: GitHub
- URL: https://github.com/seanmayer/vscodetheme
- Owner: seanmayer
- Created: 2023-05-22T20:52:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-05T20:21:15.000Z (almost 2 years ago)
- Last Synced: 2025-01-16T03:49:49.020Z (4 months ago)
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VSCode Custom Theme

# How to Change Terminal Style in Visual Studio Code (VSCode)
Follow these steps to change font size, font family, and background color in the terminal.
## 1. Open VSCode settings
You can open the settings by using the shortcut `Ctrl+,` or by navigating through the menu `File -> Preferences -> Settings`.
## 2. Custom Color Settings (Advanced)
If you need more control over your terminal's appearance, you can modify specific elements directly in the `settings.json` file:
```
{
"editor.inlineSuggest.enabled": true,
"workbench.sideBar.location": "right",
"workbench.colorTheme": "GitHub Dark Dimmed",
"workbench.iconTheme": "vscode-icons",
"terminal.integrated.defaultProfile.osx": "bash",
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true,
"scminput": false
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"source.shell",
"string.unquoted.heredoc.shell"
],
"settings": {
"foreground": "#93a1a1"
}
},
{
"scope": [
"punctuation.definition.string.begin.shell",
"punctuation.definition.string.end.shell"
],
"settings": {
"foreground": "#93a1a1"
}
}
]
},
"workbench.colorCustomizations": {
"terminal.foreground": "#80a4c2",
"terminal.background": "#001f3f",
"terminalCursor.background": "#80a4c2",
"terminalCursor.foreground": "#80a4c2",
"terminal.ansiBlack": "#001f3f",
"terminal.ansiRed": "#85144b",
"terminal.ansiGreen": "#3D9970",
"terminal.ansiYellow": "#FFDC00",
"terminal.ansiBlue": "#0074D9",
"terminal.ansiMagenta": "#B10DC9",
"terminal.ansiCyan": "#39CCCC",
"terminal.ansiWhite": "#AAAAAA",
"terminal.ansiBrightBlack": "#111111",
"terminal.ansiBrightRed": "#FF4136",
"terminal.ansiBrightGreen": "#2ECC40",
"terminal.ansiBrightYellow": "#FF851B",
"terminal.ansiBrightBlue": "#7FDBFF",
"terminal.ansiBrightMagenta": "#F012BE",
"terminal.ansiBrightCyan": "#7FDBFF",
"terminal.ansiBrightWhite": "#DDDDDD"
},
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.fontSize": 16
}
```
Autocompletion to be added for terminal too. https://kubernetes.io/docs/reference/kubectl/cheatsheet/#kubectl-autocomplete