@shikijs/colorized-brackets 3.20.0 → 3.22.0
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/dist/index.mjs +24 -0
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -19,6 +19,18 @@ const builtInThemes = {
|
|
|
19
19
|
"#179FFF",
|
|
20
20
|
"rgba(255, 18, 18, 0.8)"
|
|
21
21
|
],
|
|
22
|
+
"ayu-light": [
|
|
23
|
+
"#0431FA",
|
|
24
|
+
"#319331",
|
|
25
|
+
"#7B3814",
|
|
26
|
+
"rgba(255, 18, 18, 0.8)"
|
|
27
|
+
],
|
|
28
|
+
"ayu-mirage": [
|
|
29
|
+
"#FFD700",
|
|
30
|
+
"#DA70D6",
|
|
31
|
+
"#179FFF",
|
|
32
|
+
"rgba(255, 18, 18, 0.8)"
|
|
33
|
+
],
|
|
22
34
|
"catppuccin-frappe": [
|
|
23
35
|
"#e78284",
|
|
24
36
|
"#ef9f76",
|
|
@@ -214,6 +226,12 @@ const builtInThemes = {
|
|
|
214
226
|
"#d65d0e",
|
|
215
227
|
"#cc241d"
|
|
216
228
|
],
|
|
229
|
+
"horizon": [
|
|
230
|
+
"#FFD700",
|
|
231
|
+
"#DA70D6",
|
|
232
|
+
"#179FFF",
|
|
233
|
+
"rgba(255, 18, 18, 0.8)"
|
|
234
|
+
],
|
|
217
235
|
"houston": [
|
|
218
236
|
"#FFD700",
|
|
219
237
|
"#DA70D6",
|
|
@@ -313,6 +331,12 @@ const builtInThemes = {
|
|
|
313
331
|
"#179FFF",
|
|
314
332
|
"rgba(255, 18, 18, 0.8)"
|
|
315
333
|
],
|
|
334
|
+
"night-owl-light": [
|
|
335
|
+
"#0431FA",
|
|
336
|
+
"#319331",
|
|
337
|
+
"#7B3814",
|
|
338
|
+
"rgba(255, 18, 18, 0.8)"
|
|
339
|
+
],
|
|
316
340
|
"nord": [
|
|
317
341
|
"#8fbcbb",
|
|
318
342
|
"#88c0d0",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shikijs/colorized-brackets",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.22.0",
|
|
5
5
|
"description": "VSCode-style colorized brackets transformer for Shiki",
|
|
6
6
|
"author": "Michael Moore <mscottmoore@pm.me>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"shiki": "3.
|
|
30
|
+
"shiki": "3.22.0"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "unbuild",
|