42 lines
651 B
JSON
42 lines
651 B
JSON
{
|
|
"version": "1.4.5",
|
|
"name": "theme-abc",
|
|
"displayName": "Light and Dark Theme.",
|
|
"description": "Light and Dark Theme.",
|
|
"publisher": "inonehp",
|
|
|
|
"engines": {
|
|
"vscode": "^1.43.0"
|
|
},
|
|
"categories": [
|
|
"Themes"
|
|
],
|
|
"keywords": [
|
|
"theme",
|
|
"theme-color",
|
|
"dark",
|
|
"light"
|
|
],
|
|
|
|
"icon": "icon.png",
|
|
"galleryBanner": {
|
|
"color": "#0F0900",
|
|
"theme": "dark"
|
|
},
|
|
|
|
"contributes": {
|
|
"themes": [
|
|
{
|
|
"label": "Light Theme Abc",
|
|
"uiTheme": "vs",
|
|
"path": "light-theme-color.json"
|
|
},
|
|
{
|
|
"label": "Dark Theme Abc",
|
|
"uiTheme": "vs-dark",
|
|
"path": "dark-theme-color.json"
|
|
}
|
|
|
|
]
|
|
}
|
|
}
|