-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.11 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
{
"name": "sequoia",
"displayName": "Sequoia",
"description": "Black, elegant, modern, monochrome or colourful theme for VS Code and other interfaces.",
"version": "1.33.0",
"publisher": "sequoia",
"repository": {
"type": "git",
"url": "https://github.com/Sequoia-Theme/vs-code"
},
"bugs": {
"type": "git",
"url": "https://github.com/Sequoia-Theme/vs-code"
},
"homepage": "https://www.michaelandreuzza.com/vscode/sequoia/",
"icon": "logo/theme-icon.png",
"galleryBanner": {
"color": "#0f1014",
"theme": "dark"
},
"engines": {
"vscode": "^1.68.0"
},
"main": "./extension.js",
"activationEvents": [
"onStartupFinished"
],
"categories": [
"Themes"
],
"keywords": [
"retro",
"colorful",
"dark theme",
"light theme",
"monochrome",
"sequoia theme",
"super dark theme",
"retro"
],
"contributes": {
"themes": [
{
"label": "Sequoia Moonlight Light",
"uiTheme": "vs",
"path": "./themes/sequoia-moonlight-light.json"
},
{
"label": "Sequoia Moonlight Dark",
"uiTheme": "vs-dark",
"path": "./themes/sequoia-moonlight.json"
},
{
"label": "Sequoia Moonlight",
"uiTheme": "vs-dark",
"path": "./themes/sequoia-moonlight.json"
},
{
"label": "Sequoia Monochrome Light",
"uiTheme": "vs",
"path": "./themes/sequoia-monochrome-light.json"
},
{
"label": "Sequoia Monochrome Dark",
"uiTheme": "vs-dark",
"path": "./themes/sequoia-monochrome.json"
},
{
"label": "Sequoia Monochrome",
"uiTheme": "vs-dark",
"path": "./themes/sequoia-monochrome.json"
},
{
"label": "Sequoia Retro Light",
"uiTheme": "vs",
"path": "./themes/sequoia-retro-light.json"
},
{
"label": "Sequoia Retro Dark",
"uiTheme": "vs-dark",
"path": "./themes/sequoia-retro.json"
},
{
"label": "Sequoia Retro",
"uiTheme": "vs-dark",
"path": "./themes/sequoia-retro.json"
}
]
}
}