forked from jan-warchol/selenized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 881 Bytes
/
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
{
"name": "selenized-color-theme",
"displayName": "Selenized color theme",
"description": "Color theme using selenized palette, with emphasis on readability and balanced lightness.",
"version": "0.2.0",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Selenized light",
"uiTheme": "vs",
"path": "./themes/selenized-light.json"
},
{
"label": "Selenized dark",
"uiTheme": "vs-dark",
"path": "./themes/selenized-dark.json"
},
{
"label": "Selenized (alternative)",
"uiTheme": "vs-dark",
"path": "./themes/Selenized-alternative.json"
}
]
}
}