Shaktimaan
Shaktimaan

Reputation: 23

Ho to change the main theme color of VS Code

I have set color theme I like but what I don't like is the below "cyan" color being used in the texts. Please check the screenshot attached.

Screnshot from vs code

Upvotes: 0

Views: 326

Answers (2)

user19788561
user19788561

Reputation:

Go to Setting.JSON and create your own theme

"workbench.colorCustomizations": {
    "activityBar.activeBackground": "#1f6fd0",
    "activityBar.background": "#1f6fd0",
    "activityBar.foreground": "#e7e7e7",
    "activityBar.inactiveForeground": "#e7e7e799",
    "activityBarBadge.background": "#ee90bb",
    "activityBarBadge.foreground": "#15202b",
    "commandCenter.border": "#e7e7e799",
    "sash.hoverBorder": "#1f6fd0",
    "statusBar.background": "#1857a4",
    "statusBar.foreground": "#e7e7e7",
    "statusBarItem.hoverBackground": "#1f6fd0",
    "statusBarItem.remoteBackground": "#1857a4",
    "statusBarItem.remoteForeground": "#e7e7e7",
    "titleBar.activeBackground": "#1857a4",
    "titleBar.activeForeground": "#e7e7e7",
    "titleBar.inactiveBackground": "#1857a499",
    "titleBar.inactiveForeground": "#e7e7e799"
},

paster this code in setting.json and change as you desired

Upvotes: 0

zain ul din
zain ul din

Reputation: 619

To change VS theme press ctrl + , it will open up the settings search for theme and select you're fav theme

OR install new theme from extensions ctrl + shift + X

enter image description here

Upvotes: 1

Related Questions