Update settings for Visual Studio Dark theme

Changed the color theme to 'Visual Studio Dark' and added custom color settings for the editor and terminal backgrounds.
This commit is contained in:
Max Amundsen
2026-02-10 19:33:04 -05:00
committed by GitHub
parent d51d6d6fb1
commit 1496db1ee6

View File

@@ -201,5 +201,30 @@
"chat.disableAIFeatures": true,
"workbench.preferredDarkColorTheme": "Visual Studio Dark",
"workbench.preferredLightColorTheme": "Visual Studio Light",
"workbench.colorTheme": "Visual Studio Light",
"workbench.colorTheme": "Visual Studio Dark",
"workbench.colorCustomizations": {
"[Visual Studio Dark]": {
"editor.background": "#000000",
"terminal.background": "#1E1E1E",
"panel.background": "#1E1E1E"
}
},
"editor.tokenColorCustomizations": {
"[Visual Studio Dark]": {
"textMateRules": [
{
"scope": [
"comment",
"comment.block",
"comment.block.documentation",
"comment.line"
],
"settings": {
"foreground": "#FFFF00"
}
}
]
}
},
"claudeCode.useCtrlEnterToSend": true
}