-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "muted-nature",
"displayName": "Muted Nature",
"description": "VS Code color theme in dark, muted colors. Greens, browns, blues. Just like nature.",
"version": "0.1.0",
"publisher": "Emerion",
"icon": "icon.png",
"galleryBanner": {
"color": "#2b2b2b",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/Emerion/muted-nature"
},
"bugs": {
"url": "https://github.com/Emerion/muted-nature/issues"
},
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Themes"
],
"keywords": [
"VSCode",
"Code",
"theme",
"dark",
"muted",
"colors",
"nature",
"brown",
"green",
"blue"
],
"contributes": {
"themes": [
{
"label": "Muted Nature (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/muted-nature-dark-color-theme.json"
},
{
"label": "Muted Nature (Light)",
"uiTheme": "vs",
"path": "./themes/muted-nature-light-color-theme.json"
}
]
},
"license": "MIT"
}