-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.54 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
{
"name": "conifer-theme",
"displayName": "Conifer Theme",
"description": "Themes for the weary eyes",
"icon": "images/ConiferTheme_256x256.png",
"version": "2.4.3",
"publisher": "imalbert",
"repository": {
"type": "git",
"url": "https://github.com/imalbert/conifer-vscode-theme.git"
},
"engines": {
"vscode": "^1.57.0"
},
"keywords": [
"theme",
"dark theme",
"dark",
"conifer",
"pine",
"cone",
"pine cone",
"pine needle",
"mist",
"green",
"evergreen",
"saturated",
"muted"
],
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Conifer",
"uiTheme": "vs-dark",
"path": "./themes/conifer-color-theme.json"
},
{
"label": "Pine Cone",
"uiTheme": "vs-dark",
"path": "./themes/pine-cone-color-theme.json"
},
{
"label": "Pine Needle",
"uiTheme": "vs-dark",
"path": "./themes/pine-needle-color-theme.json"
},
{
"label": "Mist",
"uiTheme": "vs-dark",
"path": "./themes/mist-color-theme.json"
},
{
"label": "Evergreen",
"uiTheme": "vs-dark",
"path": "./themes/evergreen-color-theme.json"
}
]
}
}