Change hover color for quick picker

前端 未结 3 1359
谎友^
谎友^ 2021-01-20 02:42

Is it possible to change the color for quick picker selected option via settings?

3条回答
  •  星月不相逢
    2021-01-20 03:27

    To keep your current theme and change just this color, find "Workbench: Color Customizations" in your settings and click "edit in settings.json", and add the following to the user settings on the right side of the screen:

    "workbench.colorCustomizations": {
      "list.focusBackground": "#CCCCCC"
    },
    

    You can replace it with any color you'd like.

提交回复
热议问题