-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "solarized",
"version": "2.6.0",
"displayName": "Solarized",
"description": "Optimized Solarized theme for VS Code",
"publisher": "ryanolsonx",
"repository": "https://github.com/ryanolsonx/vscode-solarized-theme",
"license": "MIT",
"icon": "icon.png",
"keywords": [
"solarized",
"dark",
"light"
],
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Solarized Dark+",
"uiTheme": "vs-dark",
"path": "./themes/legacy-solarized-dark-color-theme.json"
},
{
"label": "Solarized Dark+ (High Contrast)",
"uiTheme": "vs-dark",
"path": "./themes/solarized-dark-high-contrast-color-theme.json"
},
{
"label": "Solarized Light+",
"uiTheme": "vs",
"path": "./themes/legacy-solarized-light-color-theme.json"
},
{
"label": "Solarized Dark+ Original",
"uiTheme": "vs-dark",
"path": "./themes/legacy-solarized-dark-color-theme.json"
},
{
"label": "Solarized Light+ Original",
"uiTheme": "vs",
"path": "./themes/legacy-solarized-light-color-theme.json"
}
]
}
}