-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
{
"name": "nightcall",
"displayName": "Nightcall",
"description": "A mellow, but colorful VS Code dark theme with vibrant shades of pink and purple.",
"version": "1.0.0",
"publisher": "bpat86",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/bpat86/nightcall-vscode-theme"
},
"keywords": [
"Theme",
"Dark",
"Night",
"Pink",
"Purple",
"Dark Theme",
"Night Theme",
"Nightcall",
"Pink Theme",
"Purple Theme",
"Accessible Theme"
],
"scripts": {
"publish": "vsce publish"
},
"galleryBanner": {
"color": "#1C2240",
"theme": "dark"
},
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Themes"
],
"icon": "main-icon.png",
"contributes": {
"themes": [
{
"label": "Nightcall",
"uiTheme": "vs-dark",
"path": "./themes/Nightcall-color-theme.json"
},
{
"label": "Nightcall (No Italics)",
"uiTheme": "vs-dark",
"path": "./themes/Nightcall-color-theme-noitalic.json"
}
]
}
}