Hide Dimmed theme

for now
This commit is contained in:
simurai 2021-01-08 17:47:02 +09:00
parent 66bc8f0f94
commit 2c64c3b6f0
2 changed files with 5 additions and 10 deletions

View file

@ -42,11 +42,6 @@
"label": "GitHub Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.json"
},
{
"label": "GitHub Dimmed",
"uiTheme": "vs-dark",
"path": "./themes/dimmed.json"
}
]
},

View file

@ -11,15 +11,15 @@ const darkTheme = getTheme({
name: "GitHub Dark",
});
const dimmedTheme = getTheme({
theme: "dimmed",
name: "GitHub Dimmed",
});
// const dimmedTheme = getTheme({
// theme: "dimmed",
// name: "GitHub Dimmed",
// });
fs.mkdir("./themes", { recursive: true })
.then(() => Promise.all([
fs.writeFile("./themes/light.json", JSON.stringify(lightTheme, null, 2)),
fs.writeFile("./themes/dark.json", JSON.stringify(darkTheme, null, 2)),
fs.writeFile("./themes/dimmed.json", JSON.stringify(dimmedTheme, null, 2)),
// fs.writeFile("./themes/dimmed.json", JSON.stringify(dimmedTheme, null, 2)),
]))
.catch(() => process.exit(1))