-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 959 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "min-theme-azure",
"displayName": "Min Theme for Azure Data Studio",
"description": "A port of the VSCode Min Theme by miguelsolorio for use with Azure Data Studio.",
"publisher": "JVtristaoAC",
"version": "1.0.0",
"engines": {
"vscode": "^1.39.0",
"azdata": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/JVtristaoAC/min-theme-azure.git"
},
"categories": [
"Themes"
],
"icon": "resources/icon.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Min Dark",
"uiTheme": "vs-dark",
"path": "./themes/min-dark.json"
},
{
"label": "Min Light",
"uiTheme": "vs",
"path": "./themes/min-light.json"
}
]
}
}