vscode绿绿主题setting config

 下载插件Green Tree Theme 选greentree

ctrl shift p找到setting

{
    "workbench.colorTheme": "Green Tree",
    "editor.fontSize": 16.5, // 字号
    "workbench.colorCustomizations": {
        "[Green Tree]": {
            "activityBarBadge.background": "#B9E5BE",
            "editorGroup.emptyBackground": "#B9E5BE",
            "editorWidget.background": "#B9E5BE",
            "editor.background": "#b9e5be",
            "editorWidget.border": "#00772e",
            "editorIndentGuide.background": "#00772e",
            "editorIndentGuide.activeBackground": "#b43939",
            "editorGroupHeader.tabsBackground": "#75A681",
            "editor.lineHighlightBackground": "#e2f1bf",
            "sideBar.background": "#CCE8CF",
            "sideBar.border": "#00772e",
            "activityBar.background": "#75A681",
            "activityBar.foreground": "#000000",
            "activityBar.border": "#00772e",
            //文件页签
            "tab.hoverBackground": "#7FD181",
            "tab.inactiveForeground": "#000000",
            "tab.inactiveBackground": "#CCE8CF",
            "tab.activeBorder": "#75A681",
            "tab.activeBackground": "#7FD181",
            "tab.activeBorderTop": "#fff",
            "tab.border": "#75A681",
            "editorGroupHeader.tabsBorder": "#75A681", //顶部标签边框
            "editorGutter.background": "#b9e5be", //行号背景色
            "editorLineNumber.foreground": "#00772e", //行号字色
            //面包屑导航
            "breadcrumb.background": "#b9e5be",
            "breadcrumb.foreground": "#00772e",
           //面板颜色
            "panel.background":"#b9e5be",
            //分割线
            "statusBar.border":"#000",
            //控制台
            // "terminal.foreground":"#00BB00",
            // "terminalCursor.background":"#00BB00",
            // "terminalCursor.foreground":"#00BB00",
            // "terminal.ansiBlack":"#001100",
            // "terminal.ansiBlue":"#009900",
            // "terminal.ansiBrightBlack":"#007700",
            // "terminal.ansiBrightBlue":"#009900",
            // "terminal.ansiBrightCyan":"#005500",
            // "terminal.ansiBrightGreen":"#00BB00",
            // "terminal.ansiBrightMagenta":"#00BB00",
            // "terminal.ansiBrightRed":"#007700",
            // "terminal.ansiBrightWhite":"#00FF00",
            // "terminal.ansiBrightYellow":"#007700",
            // "terminal.ansiCyan":"#005500",
            // "terminal.ansiGreen":"#00BB00",
            // "terminal.ansiMagenta":"#00BB00",
            // "terminal.ansiRed":"#007700",
            // "terminal.ansiWhite":"#00BB00",
            // "terminal.ansiYellow":"#007700"












        },
    },
    "editor.tokenColorCustomizations": {

        "[Green Tree]": {
            "comments": "#287ea5da",
            "strings": "#005c23",
            "keywords": "#721111",
            "functions": "#B30000",
            "textMateRules": [
                {
                    "name": "Variable",
                    "scope": [
                        "variable.language",
                        "variable.other"
                    ],
                    "settings": {
                        "foreground": "#000000"
                    }
                },
                {
                    "name": "Variable start",
                    "scope": "punctuation.definition.variable",
                    "settings": {
                        "foreground": "#a7001c"
                    }
                },
                {
                    "name": "Function name",
                    "scope": "entity.name.function",
                    "settings": {
                        "foreground": "#000872"
                    }
                },
                {
                    "name": "Keyword",
                    "scope": "keyword",
                    "settings": {
                        "foreground": "#09168b"
                    }
                },
            ]
        }
    }

相关推荐

  1. Istio蓝绿升级

    2024-04-25 19:34:03       49 阅读
  2. yolov8下实现绿萝识别

    2024-04-25 19:34:03       43 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-04-25 19:34:03       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-04-25 19:34:03       100 阅读
  3. 在Django里面运行非项目文件

    2024-04-25 19:34:03       82 阅读
  4. Python语言-面向对象

    2024-04-25 19:34:03       91 阅读

热门阅读

  1. 【React】生命周期

    2024-04-25 19:34:03       31 阅读
  2. 【vue】axios封装拦截

    2024-04-25 19:34:03       27 阅读
  3. Electron vue 进程间消息通行

    2024-04-25 19:34:03       34 阅读
  4. LeetCode-数组中最长的方波

    2024-04-25 19:34:03       35 阅读
  5. history命令

    2024-04-25 19:34:03       32 阅读
  6. 为什么你的项目总延期?多半是没做好5件事

    2024-04-25 19:34:03       30 阅读
  7. 数据结构-分治策略(分治算法)

    2024-04-25 19:34:03       32 阅读
  8. 逆序对 题解 归并排序

    2024-04-25 19:34:03       22 阅读