From 9df3e1737cd55eb4fe4899a7e5322f8744de9976 Mon Sep 17 00:00:00 2001 From: relliv Date: Mon, 21 Oct 2024 07:11:05 +0300 Subject: [PATCH] Set custom vscode theme colors --- .vscode/settings.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9fcfdae..0065c3c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,23 @@ { "scss.validate": false, + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#7cc663", + "activityBar.background": "#7cc663", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#5c76c3", + "activityBarBadge.foreground": "#e7e7e7", + "commandCenter.border": "#15202b99", + "sash.hoverBorder": "#7cc663", + "statusBar.background": "#5fb442", + "statusBar.foreground": "#15202b", + "statusBarItem.hoverBackground": "#4b8f34", + "statusBarItem.remoteBackground": "#5fb442", + "statusBarItem.remoteForeground": "#15202b", + "titleBar.activeBackground": "#5fb442", + "titleBar.activeForeground": "#15202b", + "titleBar.inactiveBackground": "#5fb44299", + "titleBar.inactiveForeground": "#15202b99" + }, + "peacock.color": "#5fb442", }