tm-themes 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +27 -0
- package/README.md +5 -0
- package/index.d.ts +2 -1
- package/index.js +82 -0
- package/package.json +1 -1
- package/themes/aurora-x.json +671 -0
- package/themes/catppuccin-frappe.json +1985 -0
- package/themes/catppuccin-latte.json +1985 -0
- package/themes/catppuccin-macchiato.json +1985 -0
- package/themes/catppuccin-mocha.json +1985 -0
package/NOTICE
CHANGED
|
@@ -11,6 +11,33 @@ forth below.
|
|
|
11
11
|
|
|
12
12
|
The following files/folders contain third party software:
|
|
13
13
|
|
|
14
|
+
=========================================================================================================
|
|
15
|
+
Files: catppuccin-frappe.json, catppuccin-latte.json, catppuccin-macchiato.json, catppuccin-mocha.json
|
|
16
|
+
License: https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE
|
|
17
|
+
SPDX: MIT
|
|
18
|
+
---------------------------------------------------------------------------------------------------------
|
|
19
|
+
MIT License
|
|
20
|
+
|
|
21
|
+
Copyright (c) 2021 Catppuccin
|
|
22
|
+
|
|
23
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
25
|
+
in the Software without restriction, including without limitation the rights
|
|
26
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
27
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
28
|
+
furnished to do so, subject to the following conditions:
|
|
29
|
+
|
|
30
|
+
The above copyright notice and this permission notice shall be included in all
|
|
31
|
+
copies or substantial portions of the Software.
|
|
32
|
+
|
|
33
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
34
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
35
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
36
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
37
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
38
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
39
|
+
SOFTWARE.
|
|
40
|
+
|
|
14
41
|
=========================================================================================================
|
|
15
42
|
Files: dark-plus.json, light-plus.json, monokai.json, red.json, solarized-dark.json, solarized-light.json
|
|
16
43
|
License: https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt
|
package/README.md
CHANGED
|
@@ -35,6 +35,11 @@ import { themes } from 'tm-themes'
|
|
|
35
35
|
|
|
36
36
|
| Name | ID | Source | License | File Size |
|
|
37
37
|
| ---- | -- | ------ | ------- | --------- |
|
|
38
|
+
| Aurora X | `aurora-x` | [marqu3ss/Aurora-X](https://github.com/marqu3ss/Aurora-X/blob/118727efadf48872adcd81f6c00be580097d6592/themes/Aurora%20X-color-theme.json) | | 13.28 kB |
|
|
39
|
+
| Catppuccin Frappe | `catppuccin-frappe` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/a97886a1c95198f042d0d0010145260338e81b24/frappe.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | 42.19 kB |
|
|
40
|
+
| Catppuccin Latte | `catppuccin-latte` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/a97886a1c95198f042d0d0010145260338e81b24/latte.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | 42.19 kB |
|
|
41
|
+
| Catppuccin Macchiato | `catppuccin-macchiato` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/a97886a1c95198f042d0d0010145260338e81b24/macchiato.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | 42.20 kB |
|
|
42
|
+
| Catppuccin Mocha | `catppuccin-mocha` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/a97886a1c95198f042d0d0010145260338e81b24/mocha.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | 42.19 kB |
|
|
38
43
|
| Dark Plus | `dark-plus` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/cc4775f55aff152db2417dfaaddc643ee90b31f9/extensions/theme-defaults/themes/dark_plus.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | 8.64 kB |
|
|
39
44
|
| Dracula | `dracula` | [dracula/visual-studio-code](https://github.com/dracula/visual-studio-code/blob/61743d6ea21cde34d9ad1009ec784ffe6f5e457c/src/dracula.yml) | [MIT](https://raw.githubusercontent.com/dracula/visual-studio-code/master/LICENSE) | 20.51 kB |
|
|
40
45
|
| Dracula Soft | `dracula-soft` | [dracula/visual-studio-code](https://github.com/dracula/visual-studio-code/blob/61743d6ea21cde34d9ad1009ec784ffe6f5e457c/src/dracula.yml) | [MIT](https://raw.githubusercontent.com/dracula/visual-studio-code/master/LICENSE) | 20.52 kB |
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -1,7 +1,61 @@
|
|
|
1
1
|
export const themes = [
|
|
2
|
+
{
|
|
3
|
+
byteSize: 13599,
|
|
4
|
+
displayName: 'Aurora X',
|
|
5
|
+
lastUpdate: '2020-08-24T08:44:55Z',
|
|
6
|
+
name: 'aurora-x',
|
|
7
|
+
sha: '118727efadf48872adcd81f6c00be580097d6592',
|
|
8
|
+
source: 'https://github.com/marqu3ss/Aurora-X/blob/118727efadf48872adcd81f6c00be580097d6592/themes/Aurora%20X-color-theme.json',
|
|
9
|
+
type: 'dark',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
byteSize: 43204,
|
|
13
|
+
displayName: 'Catppuccin Frappe',
|
|
14
|
+
lastUpdate: '2023-12-12T06:17:05Z',
|
|
15
|
+
license: 'MIT',
|
|
16
|
+
licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE',
|
|
17
|
+
name: 'catppuccin-frappe',
|
|
18
|
+
sha: 'a97886a1c95198f042d0d0010145260338e81b24',
|
|
19
|
+
source: 'https://github.com/catppuccin/vscode/blob/a97886a1c95198f042d0d0010145260338e81b24/frappe.json',
|
|
20
|
+
type: 'dark',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
byteSize: 43202,
|
|
24
|
+
displayName: 'Catppuccin Latte',
|
|
25
|
+
lastUpdate: '2023-12-12T06:17:05Z',
|
|
26
|
+
license: 'MIT',
|
|
27
|
+
licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE',
|
|
28
|
+
name: 'catppuccin-latte',
|
|
29
|
+
sha: 'a97886a1c95198f042d0d0010145260338e81b24',
|
|
30
|
+
source: 'https://github.com/catppuccin/vscode/blob/a97886a1c95198f042d0d0010145260338e81b24/latte.json',
|
|
31
|
+
type: 'dark',
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
byteSize: 43210,
|
|
35
|
+
displayName: 'Catppuccin Macchiato',
|
|
36
|
+
lastUpdate: '2023-12-12T06:17:05Z',
|
|
37
|
+
license: 'MIT',
|
|
38
|
+
licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE',
|
|
39
|
+
name: 'catppuccin-macchiato',
|
|
40
|
+
sha: 'a97886a1c95198f042d0d0010145260338e81b24',
|
|
41
|
+
source: 'https://github.com/catppuccin/vscode/blob/a97886a1c95198f042d0d0010145260338e81b24/macchiato.json',
|
|
42
|
+
type: 'dark',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
byteSize: 43202,
|
|
46
|
+
displayName: 'Catppuccin Mocha',
|
|
47
|
+
lastUpdate: '2023-12-12T06:17:05Z',
|
|
48
|
+
license: 'MIT',
|
|
49
|
+
licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE',
|
|
50
|
+
name: 'catppuccin-mocha',
|
|
51
|
+
sha: 'a97886a1c95198f042d0d0010145260338e81b24',
|
|
52
|
+
source: 'https://github.com/catppuccin/vscode/blob/a97886a1c95198f042d0d0010145260338e81b24/mocha.json',
|
|
53
|
+
type: 'dark',
|
|
54
|
+
},
|
|
2
55
|
{
|
|
3
56
|
byteSize: 8843,
|
|
4
57
|
displayName: 'Dark Plus',
|
|
58
|
+
lastUpdate: '2023-09-12T10:37:49Z',
|
|
5
59
|
license: 'MIT',
|
|
6
60
|
licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
|
|
7
61
|
name: 'dark-plus',
|
|
@@ -12,6 +66,7 @@ export const themes = [
|
|
|
12
66
|
{
|
|
13
67
|
byteSize: 21000,
|
|
14
68
|
displayName: 'Dracula',
|
|
69
|
+
lastUpdate: '2023-07-15T21:35:24Z',
|
|
15
70
|
license: 'MIT',
|
|
16
71
|
licenseUrl: 'https://raw.githubusercontent.com/dracula/visual-studio-code/master/LICENSE',
|
|
17
72
|
name: 'dracula',
|
|
@@ -22,6 +77,7 @@ export const themes = [
|
|
|
22
77
|
{
|
|
23
78
|
byteSize: 21010,
|
|
24
79
|
displayName: 'Dracula Soft',
|
|
80
|
+
lastUpdate: '2023-07-15T21:35:24Z',
|
|
25
81
|
license: 'MIT',
|
|
26
82
|
licenseUrl: 'https://raw.githubusercontent.com/dracula/visual-studio-code/master/LICENSE',
|
|
27
83
|
name: 'dracula-soft',
|
|
@@ -32,6 +88,7 @@ export const themes = [
|
|
|
32
88
|
{
|
|
33
89
|
byteSize: 11345,
|
|
34
90
|
displayName: 'GitHub Dark',
|
|
91
|
+
lastUpdate: '2023-01-06T02:19:35Z',
|
|
35
92
|
license: 'MIT',
|
|
36
93
|
licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE',
|
|
37
94
|
name: 'github-dark',
|
|
@@ -42,6 +99,7 @@ export const themes = [
|
|
|
42
99
|
{
|
|
43
100
|
byteSize: 14334,
|
|
44
101
|
displayName: 'GitHub Dark Dimmed',
|
|
102
|
+
lastUpdate: '2023-01-06T02:19:35Z',
|
|
45
103
|
license: 'MIT',
|
|
46
104
|
licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE',
|
|
47
105
|
name: 'github-dark-dimmed',
|
|
@@ -52,6 +110,7 @@ export const themes = [
|
|
|
52
110
|
{
|
|
53
111
|
byteSize: 11124,
|
|
54
112
|
displayName: 'GitHub Light',
|
|
113
|
+
lastUpdate: '2023-01-06T02:19:35Z',
|
|
55
114
|
license: 'MIT',
|
|
56
115
|
licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE',
|
|
57
116
|
name: 'github-light',
|
|
@@ -62,6 +121,7 @@ export const themes = [
|
|
|
62
121
|
{
|
|
63
122
|
byteSize: 9698,
|
|
64
123
|
displayName: 'Light Plus',
|
|
124
|
+
lastUpdate: '2023-09-12T10:37:49Z',
|
|
65
125
|
license: 'MIT',
|
|
66
126
|
licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
|
|
67
127
|
name: 'light-plus',
|
|
@@ -72,6 +132,7 @@ export const themes = [
|
|
|
72
132
|
{
|
|
73
133
|
byteSize: 18563,
|
|
74
134
|
displayName: 'Material Theme',
|
|
135
|
+
lastUpdate: '2020-12-14T16:11:18Z',
|
|
75
136
|
license: 'Apache-2.0',
|
|
76
137
|
licenseUrl: 'https://raw.githubusercontent.com/material-theme/vsc-material-theme/main/LICENSE',
|
|
77
138
|
name: 'material-theme',
|
|
@@ -82,6 +143,7 @@ export const themes = [
|
|
|
82
143
|
{
|
|
83
144
|
byteSize: 18577,
|
|
84
145
|
displayName: 'Material Theme Darker',
|
|
146
|
+
lastUpdate: '2020-12-14T16:11:18Z',
|
|
85
147
|
license: 'Apache-2.0',
|
|
86
148
|
licenseUrl: 'https://raw.githubusercontent.com/material-theme/vsc-material-theme/main/LICENSE',
|
|
87
149
|
name: 'material-theme-darker',
|
|
@@ -92,6 +154,7 @@ export const themes = [
|
|
|
92
154
|
{
|
|
93
155
|
byteSize: 18582,
|
|
94
156
|
displayName: 'Material Theme Lighter',
|
|
157
|
+
lastUpdate: '2020-12-14T16:11:18Z',
|
|
95
158
|
license: 'Apache-2.0',
|
|
96
159
|
licenseUrl: 'https://raw.githubusercontent.com/material-theme/vsc-material-theme/main/LICENSE',
|
|
97
160
|
name: 'material-theme-lighter',
|
|
@@ -102,6 +165,7 @@ export const themes = [
|
|
|
102
165
|
{
|
|
103
166
|
byteSize: 18577,
|
|
104
167
|
displayName: 'Material Theme Ocean',
|
|
168
|
+
lastUpdate: '2020-12-14T16:11:18Z',
|
|
105
169
|
license: 'Apache-2.0',
|
|
106
170
|
licenseUrl: 'https://raw.githubusercontent.com/material-theme/vsc-material-theme/main/LICENSE',
|
|
107
171
|
name: 'material-theme-ocean',
|
|
@@ -112,6 +176,7 @@ export const themes = [
|
|
|
112
176
|
{
|
|
113
177
|
byteSize: 18583,
|
|
114
178
|
displayName: 'Material Theme Palenight',
|
|
179
|
+
lastUpdate: '2020-12-14T16:11:18Z',
|
|
115
180
|
license: 'Apache-2.0',
|
|
116
181
|
licenseUrl: 'https://raw.githubusercontent.com/material-theme/vsc-material-theme/main/LICENSE',
|
|
117
182
|
name: 'material-theme-palenight',
|
|
@@ -122,6 +187,7 @@ export const themes = [
|
|
|
122
187
|
{
|
|
123
188
|
byteSize: 6231,
|
|
124
189
|
displayName: 'Min Dark',
|
|
190
|
+
lastUpdate: '2021-07-15T23:42:09Z',
|
|
125
191
|
license: 'MIT',
|
|
126
192
|
licenseUrl: 'https://raw.githubusercontent.com/miguelsolorio/min-theme/master/LICENSE',
|
|
127
193
|
name: 'min-dark',
|
|
@@ -132,6 +198,7 @@ export const themes = [
|
|
|
132
198
|
{
|
|
133
199
|
byteSize: 6909,
|
|
134
200
|
displayName: 'Min Light',
|
|
201
|
+
lastUpdate: '2021-07-15T23:42:09Z',
|
|
135
202
|
license: 'MIT',
|
|
136
203
|
licenseUrl: 'https://raw.githubusercontent.com/miguelsolorio/min-theme/master/LICENSE',
|
|
137
204
|
name: 'min-light',
|
|
@@ -142,6 +209,7 @@ export const themes = [
|
|
|
142
209
|
{
|
|
143
210
|
byteSize: 7783,
|
|
144
211
|
displayName: 'Monokai',
|
|
212
|
+
lastUpdate: '2023-08-23T21:17:23Z',
|
|
145
213
|
license: 'MIT',
|
|
146
214
|
licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
|
|
147
215
|
name: 'monokai',
|
|
@@ -152,6 +220,7 @@ export const themes = [
|
|
|
152
220
|
{
|
|
153
221
|
byteSize: 26663,
|
|
154
222
|
displayName: 'Nord',
|
|
223
|
+
lastUpdate: '2023-04-10T15:56:38Z',
|
|
155
224
|
license: 'MIT',
|
|
156
225
|
licenseUrl: 'https://raw.githubusercontent.com/nordtheme/visual-studio-code/develop/license',
|
|
157
226
|
name: 'nord',
|
|
@@ -162,6 +231,7 @@ export const themes = [
|
|
|
162
231
|
{
|
|
163
232
|
byteSize: 33267,
|
|
164
233
|
displayName: 'One Dark Pro',
|
|
234
|
+
lastUpdate: '2023-07-04T03:17:49Z',
|
|
165
235
|
license: 'MIT',
|
|
166
236
|
licenseUrl: 'https://raw.githubusercontent.com/Binaryify/OneDark-Pro/master/LICENSE.txt',
|
|
167
237
|
name: 'one-dark-pro',
|
|
@@ -172,6 +242,7 @@ export const themes = [
|
|
|
172
242
|
{
|
|
173
243
|
byteSize: 33434,
|
|
174
244
|
displayName: 'Poimandres',
|
|
245
|
+
lastUpdate: '2022-09-25T11:26:55Z',
|
|
175
246
|
name: 'poimandres',
|
|
176
247
|
sha: '574213aba50e3a46a95fa86a69025a0fae046a8a',
|
|
177
248
|
source: 'https://github.com/drcmda/poimandres-theme/blob/574213aba50e3a46a95fa86a69025a0fae046a8a/themes/poimandres-color-theme.json',
|
|
@@ -180,6 +251,7 @@ export const themes = [
|
|
|
180
251
|
{
|
|
181
252
|
byteSize: 6161,
|
|
182
253
|
displayName: 'Red',
|
|
254
|
+
lastUpdate: '2023-08-23T21:17:23Z',
|
|
183
255
|
license: 'MIT',
|
|
184
256
|
licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
|
|
185
257
|
name: 'red',
|
|
@@ -190,6 +262,7 @@ export const themes = [
|
|
|
190
262
|
{
|
|
191
263
|
byteSize: 21401,
|
|
192
264
|
displayName: 'Rosé Pine',
|
|
265
|
+
lastUpdate: '2023-04-05T19:07:31Z',
|
|
193
266
|
license: 'MIT',
|
|
194
267
|
licenseUrl: 'https://raw.githubusercontent.com/rose-pine/vscode/main/license',
|
|
195
268
|
name: 'rose-pine',
|
|
@@ -200,6 +273,7 @@ export const themes = [
|
|
|
200
273
|
{
|
|
201
274
|
byteSize: 21412,
|
|
202
275
|
displayName: 'Rosé Pine Dawn',
|
|
276
|
+
lastUpdate: '2023-04-05T19:07:31Z',
|
|
203
277
|
license: 'MIT',
|
|
204
278
|
licenseUrl: 'https://raw.githubusercontent.com/rose-pine/vscode/main/license',
|
|
205
279
|
name: 'rose-pine-dawn',
|
|
@@ -210,6 +284,7 @@ export const themes = [
|
|
|
210
284
|
{
|
|
211
285
|
byteSize: 21411,
|
|
212
286
|
displayName: 'Rosé Pine Moon',
|
|
287
|
+
lastUpdate: '2023-04-05T19:07:31Z',
|
|
213
288
|
license: 'MIT',
|
|
214
289
|
licenseUrl: 'https://raw.githubusercontent.com/rose-pine/vscode/main/license',
|
|
215
290
|
name: 'rose-pine-moon',
|
|
@@ -220,6 +295,7 @@ export const themes = [
|
|
|
220
295
|
{
|
|
221
296
|
byteSize: 9057,
|
|
222
297
|
displayName: 'Slack Dark',
|
|
298
|
+
lastUpdate: '2021-05-20T16:06:42Z',
|
|
223
299
|
license: 'MIT',
|
|
224
300
|
licenseUrl: 'https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License',
|
|
225
301
|
name: 'slack-dark',
|
|
@@ -230,6 +306,7 @@ export const themes = [
|
|
|
230
306
|
{
|
|
231
307
|
byteSize: 9371,
|
|
232
308
|
displayName: 'Slack Ochin',
|
|
309
|
+
lastUpdate: '2021-06-12T21:35:10Z',
|
|
233
310
|
license: 'MIT',
|
|
234
311
|
licenseUrl: 'https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License',
|
|
235
312
|
name: 'slack-ochin',
|
|
@@ -240,6 +317,7 @@ export const themes = [
|
|
|
240
317
|
{
|
|
241
318
|
byteSize: 6745,
|
|
242
319
|
displayName: 'Solarized Dark',
|
|
320
|
+
lastUpdate: '2023-08-23T21:17:23Z',
|
|
243
321
|
license: 'MIT',
|
|
244
322
|
licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
|
|
245
323
|
name: 'solarized-dark',
|
|
@@ -250,6 +328,7 @@ export const themes = [
|
|
|
250
328
|
{
|
|
251
329
|
byteSize: 6379,
|
|
252
330
|
displayName: 'Solarized Light',
|
|
331
|
+
lastUpdate: '2023-08-23T21:17:23Z',
|
|
253
332
|
license: 'MIT',
|
|
254
333
|
licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
|
|
255
334
|
name: 'solarized-light',
|
|
@@ -260,6 +339,7 @@ export const themes = [
|
|
|
260
339
|
{
|
|
261
340
|
byteSize: 13316,
|
|
262
341
|
displayName: 'Vitesse Black',
|
|
342
|
+
lastUpdate: '2023-11-25T14:05:49Z',
|
|
263
343
|
license: 'MIT',
|
|
264
344
|
licenseUrl: 'https://raw.githubusercontent.com/antfu/vscode-theme-vitesse/main/LICENSE',
|
|
265
345
|
name: 'vitesse-black',
|
|
@@ -270,6 +350,7 @@ export const themes = [
|
|
|
270
350
|
{
|
|
271
351
|
byteSize: 13398,
|
|
272
352
|
displayName: 'Vitesse Dark',
|
|
353
|
+
lastUpdate: '2023-09-01T02:14:43Z',
|
|
273
354
|
license: 'MIT',
|
|
274
355
|
licenseUrl: 'https://raw.githubusercontent.com/antfu/vscode-theme-vitesse/main/LICENSE',
|
|
275
356
|
name: 'vitesse-dark',
|
|
@@ -280,6 +361,7 @@ export const themes = [
|
|
|
280
361
|
{
|
|
281
362
|
byteSize: 13255,
|
|
282
363
|
displayName: 'Vitesse Light',
|
|
364
|
+
lastUpdate: '2023-09-01T02:14:43Z',
|
|
283
365
|
license: 'MIT',
|
|
284
366
|
licenseUrl: 'https://raw.githubusercontent.com/antfu/vscode-theme-vitesse/main/LICENSE',
|
|
285
367
|
name: 'vitesse-light',
|