-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.53 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "slatis-nyx",
"displayName": "Slatis Nyx",
"description": "A gift from Slatis engineers to the engineers who work while the world sleeps. Nyx was the goddess of night, and night was never the absence of something.",
"version": "0.1.0",
"publisher": "utreras",
"license": "MIT",
"icon": "icon.png",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"color theme",
"dark theme",
"dark",
"black",
"deep black",
"pure black",
"amoled",
"oled",
"midnight",
"night",
"monochrome",
"grayscale",
"minimal",
"github",
"github dark",
"dimmed",
"high contrast",
"contrast",
"accessibility",
"a11y",
"colorblind",
"color blind",
"daltonism",
"deuteranopia",
"protanopia",
"tritanopia",
"semantic highlighting",
"syntax",
"slatis"
],
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"pricing": "Free",
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/utreras/slatis-nyx"
},
"homepage": "https://github.com/utreras/slatis-nyx#readme",
"bugs": {
"url": "https://github.com/utreras/slatis-nyx/issues"
},
"contributes": {
"themes": [
{
"label": "Slatis Nyx",
"uiTheme": "vs-dark",
"path": "./themes/slatis-nyx-color-theme.json"
},
{
"label": "Slatis Nyx (Dimmed)",
"uiTheme": "vs-dark",
"path": "./themes/slatis-nyx-dimmed-color-theme.json"
},
{
"label": "Slatis Nyx (Mono)",
"uiTheme": "vs-dark",
"path": "./themes/slatis-nyx-mono-color-theme.json"
},
{
"label": "Slatis Nyx (Deuteranopia)",
"uiTheme": "vs-dark",
"path": "./themes/slatis-nyx-deuteranopia-color-theme.json"
},
{
"label": "Slatis Nyx (Tritanopia)",
"uiTheme": "vs-dark",
"path": "./themes/slatis-nyx-tritanopia-color-theme.json"
},
{
"label": "Slatis Nyx (High Contrast)",
"uiTheme": "hc-black",
"path": "./themes/slatis-nyx-high-contrast-color-theme.json"
}
]
},
"scripts": {
"build": "node scripts/build-variant.js && node scripts/build-terminal.js && node scripts/build-zed.js",
"build:themes": "node scripts/build-variant.js",
"build:terminal": "node scripts/build-terminal.js",
"build:zed": "node scripts/build-zed.js"
}
}