通过设置自定义vscode内文本样式,字符串函数颜色等

找了一下vscode的主题,感觉风格都不是非常的喜欢,网友推荐的也是不太符合自己的心思,然后去官方文档里面看了一下配置,自己瞎鼓捣了一下(颜色自己配置,:)惊喜的原谅色?),配置如下:

{
    //设置用户选中代码段的颜色
    "workbench.colorCustomizations": {
        "editorBracketMatch.background": "#e4393c",//匹配括号的背景色
        "editorCursor.foreground": "#01cd78",//编辑器光标颜色
        // "activityBar.background":"e4393c",//活动栏背景色
        "activityBar.foreground":"#01cd78",//活动栏前景色,图标颜色
        // "editor.background":"#e4393c",//编辑器背景颜色
        "editor.findMatchBackground":"#e4393c",//搜索项颜色
        // "editor.findMatchHighlightBackground":"#01cd78",//其他搜索项颜色
        // "editor.lineHighlightBackground":"#e4393c",//光标所在行高亮文本的背景颜色
        // "editor.selectionBackground": "#01cd78",//编辑器所选内容的颜色
        "editor.selectionHighlightBackground": "#01cd78",//与所选内容具有相同内容的区域颜色
        // "editor.rangeHighlightBackground": "#e4393c",//突出显示范围的背景颜色,例如 "Quick Open" 和“查找”功能
        // "editorGutter.background": "#01cd78",//编辑器导航线的背景色,导航线包括边缘符号和行号
        // "editorLineNumber.foreground": "#01cd78",//编辑器行号颜色
        // // "sideBar.background": "#01cd78",//侧边栏背景色
        // "sideBar.foreground": "#01cd78",//侧边栏前景色
        // "sideBarSectionHeader.background": "#01cd78",//侧边栏节标题的背景颜色
        // "statusBar.background": "#01cd78",//标准状态栏背景色
        // "statusBar.noFolderBackground": "#01cd78",//没有打开文件夹时状态栏的背景色
        // "statusBar.debuggingBackground": "#01cd78",//调试程序时状态栏的背景色
        // "tab.activeBackground": "#01cd78",//	活动选项卡的背景色
        // "tab.activeForeground": "#01cd78",//	活动组中活动选项卡的前景色
        // "tab.inactiveBackground": "#01cd78",// 非活动选项卡的背景色
        // "tab.inactiveForeground": "#01cd78",// 活动组中非活动选项卡的前景色

        "terminal.foreground":"#01cd78",
   },
    // 函数名等颜色
    "editor.tokenColorCustomizations":{
        // "textMateRules": [
        //     {
        //         "scope":"",
        //         "settings": {
        //             "foreground": "#FF0000",
        //             "fontStyle": "bold"
        //         }
        //     }
        // ],//规则与样式
        "functions": "#e4393c",//函数颜色
        "strings": "#7fb785",//字符串颜色
        "keywords": "#FF0000",//关键字颜色
        "types": "#FF0000",//类型定义颜色
        "variables": "#FF0000",//变量颜色
        // "numbers": "#FF0000",//数字颜色
        // "comments": "#FF0000",//注释颜色
    },
    "vim.useCtrlKeys": false,
}

在用户设置里面放入json就可以了,鼠标移入还能看到vscode给的注释

你可能感兴趣的:(vscode)