HbuilderX个人主题配置参数json

设置 => 源码视图 => 用户设置:

{
    "editor.colorScheme" : "Atom One Dark",
    "explorer.iconTheme" : "",
    "terminal.type" : "内置终端",
    "theme-custom.author" : "MelodyJerry",
    "theme-custom.date" : "2020-09-09",
    "theme-custom.name" : "vscode-light",
    "theme-custom.version" : "0.0.2",
    "workbench.colorCustomizations" : {
        "[Default]" : {
            "console.background" : "#ffffff",
            "editor.background" : "#ffffff",
            "editorGroup.border" : "#e7e7e7",
            "editorGroupHeader.tabsBackground" : "#FFF",
            "editorSuggestWidget.background" : "#F3f3f3",
            "editorSuggestWidget.selectedBackground" : "#d6ebff",
            "extensionButton.prominentBackground" : "#ececec",
            "extensionButton.prominentHoverBackground" : "#f3f3f3",
            "imageview.background" : "#fff",
            "imageview.foreground" : "#fff",
            "input.background" : "#f3f3f3",
            "inputList.hoverBackground" : "#d6ebff",
            "inputOption.activeBorder" : "#eee",
            "inputValidation.infoBackground" : "#f3f3f3",
            "list.activeSelectionBackground" : "#0074e8",
            "list.highlightForeground" : "#FFF",
            "list.hoverBackground" : "#E8e8e8",
            "minimap.handle.background" : "#c9c9c9",
            "notifications.background" : "#ffffff",
            "notifications.border" : "#d9d9d9",
            "outlineBackground" : "#ffffff",
            "scrollbarSlider.background" : "#c1c1c1",
            "scrollbarSlider.hoverBackground" : "#929292",
            "settings.dropdownBackground" : "#ffffff",
            "settings.dropdownBorder" : "#ffffff",
            "settings.textInputBackground" : "#ffffff",
            "settings.textInputBorder" : "#eeeeee",
            "sideBar.background" : "#F3f3f3",
            "statusBar.background" : "#007acc",
            "statusBar.foreground" : "#FFFFFF",
            "tab.activeBackground" : "#0074e8",
            "tab.border" : "#ececec",
            "tab.hoverBackground" : "#ececec",
            "tab.inactiveBackground" : "#ececec",
            "tab.inactiveForeground" : "#000",
            "tab.unfocusedHoverBackground" : "#ececec",
            "terminal.background" : "#ffffff",
            "titleBar.activeBackground" : "#DDDDDD",
            "toolBar.background" : "#ececec",
            "toolBar.border" : "#ececec",
            "toolBar.hoverBackground" : "#F3f3f3"
        }
    }
}

官方的说明:

    //自定义UI主题,可拷贝相关行到右边编辑区更改颜色值
    //详情参考:https://ask.dcloud.net.cn/article/35776
    //"workbench.colorCustomizations": {
    //    "[Default]": {//绿柔
    //        "sideBar.background":"#faf6e6", //加深项目管理器颜色
    //        "editor.background":"#faf6e6" //加深编辑区域背景颜色
    //    },
    //    "[Monokai]": {//酷黑
    //        "toolBar.background": "#272822", //工具栏背景色设为黑色
    //        "sideBar.background":"#272822" //项目管理器背景色设为黑色
    //    },
    //    "[Atom One Dark]": {//雅蓝
    //        "sideBar.background": "#282c34", //项目管理器背景色设为与代码区背景色相同
    //        "editor.background":"#282c3f" //调亮编辑区域背景颜色
    //    }
    //}
原文地址:https://www.cnblogs.com/melodyjerry/p/13963913.html