Home > OS >  Need help changing the color of the line and where it says "Other Commands" in VSCode when
Need help changing the color of the line and where it says "Other Commands" in VSCode when

Time:05-14

Here is the image of the Command Palette:

control palette category text color

CodePudding user response:

If you are looking to change the color of the text other commands in your Command Palette example, use this colorCustomization:

"workbench.colorCustomizations": {
    
    "pickerGroup.foreground": "#ff0000"
}

inside of your settings.json.

pickerGroup.foreground : Quick picker (Quick Open) color for grouping labels.

from Theme Colors reference: Quick Picker Colors. Also see this citation for general workbench.colorCustomizations info.

other commands is a label for the next group of entries in any quick pick panel so that colorCustomization will change the label for all quick pick panel, like Ctrl P for example.

  • Related