Hide Dimmed theme
for now
This commit is contained in:
parent
66bc8f0f94
commit
2c64c3b6f0
2 changed files with 5 additions and 10 deletions
|
@ -42,11 +42,6 @@
|
|||
"label": "GitHub Dark",
|
||||
"uiTheme": "vs-dark",
|
||||
"path": "./themes/dark.json"
|
||||
},
|
||||
{
|
||||
"label": "GitHub Dimmed",
|
||||
"uiTheme": "vs-dark",
|
||||
"path": "./themes/dimmed.json"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
10
src/index.js
10
src/index.js
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue