Here is the image of the Command Palette:
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.

