mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
28 lines
519 B
JSON
28 lines
519 B
JSON
{
|
|
"name": "theme-sample",
|
|
"version": "0.1.0",
|
|
"publisher": "vscode-samples",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"engines": {
|
|
"vscode": "*"
|
|
},
|
|
"contributes": {
|
|
"themes": [
|
|
{
|
|
"label": "Sample Light",
|
|
"uiTheme": "vs",
|
|
"path": "./Sample_Light.tmTheme"
|
|
},
|
|
{
|
|
"label": "Sample Dark",
|
|
"uiTheme": "vs-dark",
|
|
"path": "./Sample_Dark.tmTheme"
|
|
}
|
|
]
|
|
}
|
|
} |