-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.69 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
{
"name": "naviary-sanctuary-theme",
"displayName": "Naviary Sanctuary Theme",
"description": "Comfortable light and dark themes with balanced contrast, vivid syntax colors, and Naviary orange accents.",
"version": "1.2.1",
"publisher": "naviary-sanctuary",
"license": "MIT",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/Naviary-Sanctuary/theme.git"
},
"bugs": {
"url": "https://github.com/Naviary-Sanctuary/theme/issues"
},
"homepage": "https://github.com/Naviary-Sanctuary/theme#readme",
"engines": {
"vscode": "^1.85.0"
},
"extensionKind": ["ui"],
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark theme",
"light theme",
"naviary",
"sanctuary",
"ivory",
"orange",
"vivid",
"pastel",
"windsurf",
"vscode"
],
"contributes": {
"themes": [
{
"label": "Naviary Light",
"uiTheme": "vs",
"path": "./themes/naviary-light-theme.json"
},
{
"label": "Naviary Pastel Light",
"uiTheme": "vs",
"path": "./themes/naviary-pastel-light-theme.json"
},
{
"label": "Naviary Vivid Light",
"uiTheme": "vs",
"path": "./themes/naviary-vivid-light-theme.json"
},
{
"label": "Naviary Pastel Dark",
"uiTheme": "vs-dark",
"path": "./themes/naviary-pastel-dark-theme.json"
},
{
"label": "Naviary Dark",
"uiTheme": "vs-dark",
"path": "./themes/naviary-dark-theme.json"
},
{
"label": "Naviary Vivid Dark",
"uiTheme": "vs-dark",
"path": "./themes/naviary-vivid-dark-theme.json"
}
]
}
}