{ "name": "material-theme", "displayName": "material-theme", "description": "自用主題", "version": "0.0.1", "publisher": "soojade", "engines": { "vscode": "^1.5.0" }, "categories": [ // 擴展類型 "Themes" ], "contributes": { // 定義了此擴展項目包含的內容,其中 themes 表示顏色主題,是一個數組,可在此處放入多個顏色主題。 "themes": [ { "label": "material", // 選擇顏色主題時顯示的名稱 "uiTheme": "vs-dark", // 編輯器 UI 的顏色,可選為 vs-light 和 vs-dark "path": "./themes/Material-Theme.tmTheme" // 主題文件的位置 }, { "label": "deepin-green", "uiTheme": "vs-dark", "path": "./themes/deep-green Theme.tmTheme" } ] } }
{ "name": "theme-gv-gray", "version": "0.1.0", "publisher": "GV", "engines": { "vscode": "*" }, "contributes": { "themes": [ { "label": "gv-gray", "uiTheme": "vs", "path": "./themes/gv-gray-color-theme.json" } ] } }
打開網站“http://tmtheme-editor.herokuapp.com/#!/editor/theme/Monokai”制作自己喜歡的主題,然后下載到themes
文件夾下。
參考 https://www.cnblogs.com/garvenc/p/vscode_customize_color_theme.html