-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.5 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.5 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
{
"name": "fexend-theme",
"displayName": "Fexend Theme",
"description": "A dark, vibrant Visual Studio Code theme inspired by Tailwind CSS and the Shades of Purple theme",
"version": "1.0.7",
"publisher": "Fexend",
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark theme",
"tailwind"
],
"repository": {
"type": "git",
"url": "https://github.com/fexend/fexend-theme.git"
},
"bugs": {
"url": "https://github.com/fexend/fexend-theme/issues"
},
"homepage": "https://github.com/fexend/fexend-theme#readme",
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#020617",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Fexend Theme",
"uiTheme": "vs-dark",
"path": "./themes/fexend-color-theme.json"
},
{
"label": "Fexend Theme Italic",
"uiTheme": "vs-dark",
"path": "./themes/fexend-color-theme-italic.json"
},
{
"label": "Fexend Theme Medium Purple",
"uiTheme": "vs-dark",
"path": "./themes/fexend-color-theme-medium-purple.json"
},
{
"label": "Fexend Theme Soft Dark",
"uiTheme": "vs-dark",
"path": "./themes/fexend-color-theme-soft-dark.json"
},
{
"label": "Fexend Theme Soft Dark Italic",
"uiTheme": "vs-dark",
"path": "./themes/fexend-color-theme-soft-dark-italic.json"
},
{
"label": "Fexend Theme Medium Purple Italic",
"uiTheme": "vs-dark",
"path": "./themes/fexend-color-theme-medium-purple-italic.json"
}
]
}
}