'Need help changing the color of the line and where it says "Other Commands" in VSCode when you press Ctrl + Shift + P

Here is the image of the Command Palette:

control palette category text color



Solution 1:[1]

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.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Mark