From 1496db1ee6cfb070a32af55e29b2ba4b55794af8 Mon Sep 17 00:00:00 2001 From: Max Amundsen <109674749+maxamundsen@users.noreply.github.com> Date: Tue, 10 Feb 2026 19:33:04 -0500 Subject: [PATCH] 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. --- .config/Code/User/settings.json | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json index f5a6613..ad5a6d4 100644 --- a/.config/Code/User/settings.json +++ b/.config/Code/User/settings.json @@ -201,5 +201,30 @@ "chat.disableAIFeatures": true, "workbench.preferredDarkColorTheme": "Visual Studio Dark", "workbench.preferredLightColorTheme": "Visual Studio Light", - "workbench.colorTheme": "Visual Studio Light", -} \ No newline at end of file + "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 +}