Files

28 lines
519 B
JSON
Raw Permalink Normal View History

2016-08-29 20:10:20 +02:00
{
"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"
},
2016-12-30 11:17:41 +01:00
"engines": {
"vscode": "*"
},
2016-08-29 20:10:20 +02:00
"contributes": {
"themes": [
{
"label": "Sample Light",
"uiTheme": "vs",
"path": "./Sample_Light.tmTheme"
},
{
"label": "Sample Dark",
2016-08-29 20:10:20 +02:00
"uiTheme": "vs-dark",
"path": "./Sample_Dark.tmTheme"
2016-08-29 20:10:20 +02:00
}
]
}
2025-08-06 23:43:14 -07:00
}