-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nightstorm",
"displayName": "Nightstorm",
"description": "A theme utilizing the Oklab color space.",
"version": "0.1.0",
"license": "MIT",
"publisher": "ninlith",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"color-theme",
"dark",
"oklab",
"jetbrains",
"new ui",
"phpstorm",
"webstorm"
],
"repository": {
"type": "git",
"url": "https://github.com/ninlith/nightstorm-vscode-theme.git"
},
"bugs": {
"url": "https://github.com/ninlith/nightstorm-vscode-theme/issues"
},
"icon": "./images/icon.png",
"galleryBanner": {
"color": "#202020",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Nightstorm Blue",
"uiTheme": "vs-dark",
"path": "./themes/Nightstorm-blue.json"
},
{
"label": "Nightstorm Orange",
"uiTheme": "vs-dark",
"path": "./themes/Nightstorm-orange.json"
},
{
"label": "Nightstorm Turquoise",
"uiTheme": "vs-dark",
"path": "./themes/Nightstorm-turquoise.json"
},
{
"label": "Nightstorm Cyan",
"uiTheme": "vs-dark",
"path": "./themes/Nightstorm-cyan.json"
},
{
"label": "Nightstorm Magenta",
"uiTheme": "vs-dark",
"path": "./themes/Nightstorm-magenta.json"
}
]
}
}