-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
111 lines (111 loc) · 2.77 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
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
107
108
109
110
111
{
"name": "pride-vscode-themes",
"displayName": "Pride VSCode themes 🏳️🌈",
"description": "Pride-inspired VSCode themes",
"publisher": "CharlieGerard",
"version": "0.0.4",
"engines": {
"vscode": "^1.57.0"
},
"icon": "icon.jpeg",
"repository": {
"type": "git",
"url": "https://github.com/charliegerard/pride-vscode-themes"
},
"author": {
"name": "Charlie Gerard",
"url": "https://charliegerard.dev/"
},
"categories": [
"Themes"
],
"keywords": [
"pride",
"vscode"
],
"license": "MIT",
"contributes": {
"themes": [
{
"label": "Bisexual (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/bisexual-color-theme.json"
},
{
"label": "Bisexual (Light)",
"uiTheme": "vs",
"path": "./themes/bisexual-light-color-theme.json"
},
{
"label": "Pansexual (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/pansexual-color-theme.json"
},
{
"label": "Pansexual (Light)",
"uiTheme": "vs",
"path": "./themes/pansexual-light-color-theme.json"
},
{
"label": "Asexual (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/asexual-color-theme.json"
},
{
"label": "Asexual (Light)",
"uiTheme": "vs",
"path": "./themes/asexual-light-color-theme.json"
},
{
"label": "Transgender (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/transgender-color-theme.json"
},
{
"label": "Transgender (Light)",
"uiTheme": "vs",
"path": "./themes/transgender-light-color-theme.json"
},
{
"label": "Genderfluid (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/genderfluid-color-theme.json"
},
{
"label": "Genderfluid (Light)",
"uiTheme": "vs",
"path": "./themes/genderfluid-light-color-theme.json"
},
{
"label": "Genderqueer (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/genderqueer-color-theme.json"
},
{
"label": "Genderqueer (Light)",
"uiTheme": "vs",
"path": "./themes/genderqueer-light-color-theme.json"
},
{
"label": "Non-binary (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/non-binary-color-theme.json"
},
{
"label": "Non-binary (Light)",
"uiTheme": "vs",
"path": "./themes/non-binary-light-color-theme.json"
},
{
"label": "Polysexual (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/polysexual-color-theme.json"
},
{
"label": "Agender (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/agender-color-theme.json"
}
]
}
}