-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
package.json
61 lines (61 loc) · 1.47 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
{
"name": "night-owl",
"displayName": "Night Owl",
"description": "A VS Code theme for the night owls out there. Now introducing Light Owl theme for daytime usage. Decisions were based on meaningful contrast for reading comprehension and for optimal razzle dazzle. ✨",
"version": "2.0.1",
"publisher": "sdras",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/sdras/night-owl-vscode-theme"
},
"keywords": [
"Theme",
"Dark Theme",
"Light Theme",
"Night Owl",
"Night Theme",
"Light Owl",
"Snow Owl",
"Early Bird",
"Accessible Theme"
],
"scripts": {
"publish": "vsce publish"
},
"galleryBanner": {
"color": "#061526",
"theme": "dark"
},
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Themes"
],
"icon": "owl-icon.png",
"contributes": {
"themes": [
{
"label": "Night Owl",
"uiTheme": "vs-dark",
"path": "./themes/Night Owl-color-theme.json"
},
{
"label": "Night Owl (No Italics)",
"uiTheme": "vs-dark",
"path": "./themes/Night Owl-color-theme-noitalic.json"
},
{
"label": "Night Owl Light",
"uiTheme": "vs",
"path": "./themes/Night Owl-Light-color-theme.json"
},
{
"label": "Night Owl Light (No Italics)",
"uiTheme": "vs",
"path": "./themes/Night Owl-Light-color-theme-noitalic.json"
}
]
}
}