[VS Code]-代码高亮设置

代码高亮设置


在vscode 中对 “选中的代码片段高亮颜色设置”和 “所在当前行高亮提示设置”

  1. workbench.colorCustomizations

在这里插入图片描述
2. 写配置代码

"workbench.colorCustomizations": {
        "editor.lineHighlightBackground": "#0011ff49",
        "editor.findMatchBackground": "#7bff009c",
        "editor.wordHighlightBackground": "#ff0000",
        "editor.selectionBackground": "#ff0000",
        "editor.selectionHighlightBackground": "#00aeffa2"
    },

在这里插入图片描述


版权声明:本文为u014217137原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。