@glifox/gnosis 0.0.4 → 0.0.5
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/gnosis.mjs +4533 -258
- package/dist/gnosis.umd.js +8 -2
- package/package.json +3 -3
package/dist/gnosis.mjs
CHANGED
|
@@ -1,76 +1,87 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import { languages as
|
|
5
|
-
import { markdown as
|
|
6
|
-
import { GFM as
|
|
7
|
-
import { Tag as
|
|
8
|
-
import { ViewPlugin as
|
|
9
|
-
import { syntaxTree as
|
|
10
|
-
import { EditorView as
|
|
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
|
-
this
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
1
|
+
var V = Object.defineProperty;
|
|
2
|
+
var X = (t, r, o) => r in t ? V(t, r, { enumerable: !0, configurable: !0, writable: !0, value: o }) : t[r] = o;
|
|
3
|
+
var L = (t, r, o) => X(t, typeof r != "symbol" ? r + "" : r, o);
|
|
4
|
+
import { languages as Z } from "@codemirror/language-data";
|
|
5
|
+
import { markdown as J } from "@codemirror/lang-markdown";
|
|
6
|
+
import { GFM as ee } from "@lezer/markdown";
|
|
7
|
+
import { Tag as re, styleTags as te, tags as e } from "@lezer/highlight";
|
|
8
|
+
import { ViewPlugin as ae, Decoration as h, WidgetType as S, EditorView as K } from "@codemirror/view";
|
|
9
|
+
import { syntaxTree as H, HighlightStyle as oe, syntaxHighlighting as ne } from "@codemirror/language";
|
|
10
|
+
import { EditorView as B } from "codemirror";
|
|
11
|
+
import { Compartment as le } from "@codemirror/state";
|
|
12
|
+
const m = re.define("none"), ce = te({
|
|
13
|
+
"Blockquote/...": m,
|
|
14
|
+
HorizontalRule: m,
|
|
15
|
+
"ATXHeading1/... SetextHeading1/...": m,
|
|
16
|
+
"ATXHeading2/... SetextHeading2/...": m,
|
|
17
|
+
"ATXHeading3/...": m,
|
|
18
|
+
"ATXHeading4/...": m,
|
|
19
|
+
"ATXHeading5/...": m,
|
|
20
|
+
"ATXHeading6/...": m,
|
|
21
|
+
"Comment CommentBlock": m,
|
|
22
|
+
Escape: m,
|
|
23
|
+
Entity: m,
|
|
24
|
+
"Emphasis/...": m,
|
|
25
|
+
"StrongEmphasis/...": m,
|
|
26
|
+
"Strikethrough/...": m,
|
|
27
|
+
"TableHeader/...": m,
|
|
28
|
+
"Link/... Image/...": m,
|
|
29
|
+
"OrderedList/... BulletList/...": m,
|
|
30
|
+
"BlockQuote/...": m,
|
|
31
|
+
"InlineCode CodeText": m,
|
|
32
|
+
"URL Autolink": m,
|
|
33
|
+
"HeaderMark HardBreak QuoteMark ListMark LinkMark EmphasisMark CodeMark StrikethroughMark": m,
|
|
34
|
+
"CodeInfo LinkLabel TaskMarker TableDelimiter": m,
|
|
35
|
+
LinkTitle: m,
|
|
36
|
+
Paragraph: m
|
|
37
|
+
}), se = { props: [ce] }, C = (t, r, o = {}) => {
|
|
38
|
+
const n = class {
|
|
39
|
+
constructor(g) {
|
|
40
|
+
L(this, "decorations");
|
|
41
|
+
L(this, "conf");
|
|
42
|
+
this.conf = r, this.decorations = t(g, this.conf);
|
|
43
|
+
}
|
|
44
|
+
update(g) {
|
|
45
|
+
(g.docChanged || g.viewportChanged || g.selectionSet) && (this.decorations = t(g.view, this.conf));
|
|
45
46
|
}
|
|
46
47
|
};
|
|
47
|
-
return
|
|
48
|
-
},
|
|
49
|
-
const
|
|
50
|
-
for (let
|
|
51
|
-
if (
|
|
48
|
+
return ae.fromClass(n, { decorations: (s) => s.decorations, ...o });
|
|
49
|
+
}, v = (t, r, o) => {
|
|
50
|
+
const n = t.state.selection.ranges;
|
|
51
|
+
for (let s of n)
|
|
52
|
+
if (s.from >= r && s.from <= o || s.to >= r && s.to <= o || s.from <= r && s.to >= o)
|
|
52
53
|
return !0;
|
|
53
54
|
return !1;
|
|
54
|
-
},
|
|
55
|
-
for (const { from:
|
|
56
|
-
|
|
55
|
+
}, E = (t, r) => {
|
|
56
|
+
for (const { from: o, to: n } of t.visibleRanges)
|
|
57
|
+
H(t.state).iterate({ ...r, from: o, to: n });
|
|
57
58
|
};
|
|
58
|
-
function
|
|
59
|
-
const s =
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
59
|
+
function ge(t, r, o, n = 1) {
|
|
60
|
+
const s = (i) => [
|
|
61
|
+
(t[0] - (1 - i) * r[0]) / i,
|
|
62
|
+
(t[1] - (1 - i) * r[1]) / i,
|
|
63
|
+
(t[2] - (1 - i) * r[2]) / i
|
|
64
|
+
];
|
|
65
|
+
let g = o, l = s(g);
|
|
66
|
+
const a = l.map((i, d) => i < 0 && r[d] > 0 ? 1 - l[d] / r[d] : o), c = Math.max(...a);
|
|
67
|
+
return c > g && (g = Math.min(c, n), t = s(g)), l = l.map((i) => Math.round(i < 0 ? 0 : i)), l.push(g), l;
|
|
68
|
+
}
|
|
69
|
+
function ie(t, r) {
|
|
70
|
+
const o = ["Document"], n = {}, s = {
|
|
71
|
+
HorizontalRule: (l, a, c = !0) => [
|
|
72
|
+
h.line({ class: "hr " + (c ? "sw" : "") }).range(l),
|
|
73
|
+
h.mark({ class: "mk" }).range(l, a)
|
|
63
74
|
]
|
|
64
|
-
},
|
|
65
|
-
return
|
|
66
|
-
enter: ({ type:
|
|
67
|
-
}),
|
|
75
|
+
}, g = [];
|
|
76
|
+
return E(t, {
|
|
77
|
+
enter: ({ type: l, from: a, to: c }) => (l.name in s && g.push(...s[l.name](a, c, v(t, a, c))), o.includes(l.name) || l.name in n)
|
|
78
|
+
}), h.set(g, !1);
|
|
68
79
|
}
|
|
69
|
-
const
|
|
80
|
+
const he = (t) => {
|
|
70
81
|
const {
|
|
71
|
-
color:
|
|
82
|
+
color: r = "black"
|
|
72
83
|
} = t || {};
|
|
73
|
-
return
|
|
84
|
+
return B.baseTheme({
|
|
74
85
|
".hr": { position: "relative" },
|
|
75
86
|
".hr > .mk": { fontSize: "0" },
|
|
76
87
|
".hr.sw > .mk": { fontSize: "inherit" },
|
|
@@ -79,33 +90,33 @@ const _ = (t) => {
|
|
|
79
90
|
position: "absolute",
|
|
80
91
|
width: "calc(100% - 12px)",
|
|
81
92
|
height: ".2ch",
|
|
82
|
-
backgroundColor:
|
|
93
|
+
backgroundColor: r
|
|
83
94
|
},
|
|
84
|
-
".hr.sw::before": { width: "0", height: "0" }
|
|
95
|
+
"&.cm-focused .hr.sw::before": { width: "0", height: "0" }
|
|
85
96
|
});
|
|
86
|
-
},
|
|
87
|
-
|
|
88
|
-
|
|
97
|
+
}, Q = (t = {}) => [
|
|
98
|
+
C(ie, {}),
|
|
99
|
+
he(t == null ? void 0 : t.color)
|
|
89
100
|
];
|
|
90
|
-
function
|
|
91
|
-
const
|
|
92
|
-
StrongEmphasis: (
|
|
93
|
-
Strikethrough: (
|
|
94
|
-
InlineCode: (
|
|
95
|
-
Emphasis: (
|
|
96
|
-
Mark: (
|
|
97
|
-
},
|
|
98
|
-
return
|
|
99
|
-
enter: ({ type: { name:
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
101
|
+
function de(t, r) {
|
|
102
|
+
const o = ["FencedCode"], n = {
|
|
103
|
+
StrongEmphasis: (l = !0, a, c) => h.mark({ class: "il st " + (l ? "sw" : "") }).range(a, c),
|
|
104
|
+
Strikethrough: (l = !0, a, c) => h.mark({ class: "il sk " + (l ? "sw" : "") }).range(a, c),
|
|
105
|
+
InlineCode: (l = !0, a, c) => h.mark({ class: "il ic " + (l ? "sw" : "") }).range(a, c),
|
|
106
|
+
Emphasis: (l = !0, a, c) => h.mark({ class: "il it " + (l ? "sw" : "") }).range(a, c),
|
|
107
|
+
Mark: (l, a) => h.mark({ class: "mkl" }).range(l, a)
|
|
108
|
+
}, s = ["EmphasisMark", "CodeMark", "StrikethroughMark"], g = [];
|
|
109
|
+
return E(t, {
|
|
110
|
+
enter: ({ type: { name: l }, from: a, to: c }) => s.includes(l) ? (g.push(n.Mark(a, c)), !1) : (l in n && g.push(
|
|
111
|
+
n[l](
|
|
112
|
+
v(t, a, c),
|
|
113
|
+
a,
|
|
114
|
+
c
|
|
104
115
|
)
|
|
105
|
-
), !
|
|
106
|
-
}),
|
|
116
|
+
), !o.includes(l))
|
|
117
|
+
}), h.set(g, !1);
|
|
107
118
|
}
|
|
108
|
-
const
|
|
119
|
+
const be = B.baseTheme({
|
|
109
120
|
".it ": { fontStyle: "italic" },
|
|
110
121
|
".st ": { fontWeight: "bold" },
|
|
111
122
|
".sk ": { textDecoration: "line-through" },
|
|
@@ -114,82 +125,82 @@ const q = k.baseTheme({
|
|
|
114
125
|
paddingInline: ".6ch",
|
|
115
126
|
borderRadius: ".6ch"
|
|
116
127
|
}
|
|
117
|
-
}),
|
|
128
|
+
}), me = B.baseTheme({
|
|
118
129
|
".il .mkl": { fontSize: "0" },
|
|
119
|
-
".il.sw .mkl": { fontSize: "inherit" }
|
|
120
|
-
}),
|
|
130
|
+
"&.cm-focused .il.sw .mkl": { fontSize: "inherit" }
|
|
131
|
+
}), z = (t = {}) => {
|
|
121
132
|
const {
|
|
122
|
-
hideMarks:
|
|
133
|
+
hideMarks: r = !0
|
|
123
134
|
} = t;
|
|
124
135
|
return [
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
136
|
+
C(de, {}),
|
|
137
|
+
be,
|
|
138
|
+
r ? me : []
|
|
128
139
|
];
|
|
129
140
|
};
|
|
130
|
-
class
|
|
131
|
-
constructor(
|
|
141
|
+
class ue extends S {
|
|
142
|
+
constructor(o) {
|
|
132
143
|
super();
|
|
133
|
-
|
|
134
|
-
this.checked =
|
|
144
|
+
L(this, "checked", !1);
|
|
145
|
+
this.checked = o;
|
|
135
146
|
}
|
|
136
147
|
// eq(other) { return other.checked == this.checked }
|
|
137
148
|
toDOM() {
|
|
138
|
-
let
|
|
139
|
-
|
|
140
|
-
let
|
|
141
|
-
return
|
|
149
|
+
let o = document.createElement("span");
|
|
150
|
+
o.setAttribute("aria-hidden", "true"), o.className = "TaskMark";
|
|
151
|
+
let n = o.appendChild(document.createElement("input"));
|
|
152
|
+
return n.type = "checkbox", n.checked = this.checked, o;
|
|
142
153
|
}
|
|
143
154
|
ignoreEvent() {
|
|
144
155
|
return !1;
|
|
145
156
|
}
|
|
146
157
|
}
|
|
147
|
-
function
|
|
148
|
-
const
|
|
158
|
+
function fe(t, r) {
|
|
159
|
+
const o = [
|
|
149
160
|
"Document",
|
|
150
161
|
"ListItem",
|
|
151
162
|
"Task"
|
|
152
|
-
],
|
|
163
|
+
], n = {
|
|
153
164
|
BulletList: "bl",
|
|
154
165
|
OrderedList: "ol"
|
|
155
|
-
},
|
|
156
|
-
ListMark: (
|
|
157
|
-
TaskMarker: (
|
|
158
|
-
const
|
|
159
|
-
return
|
|
160
|
-
widget: new
|
|
161
|
-
}).range(
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
return
|
|
165
|
-
enter: ({ type:
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
)),
|
|
171
|
-
leave: ({ type: { name:
|
|
172
|
-
const
|
|
173
|
-
|
|
174
|
-
}
|
|
175
|
-
}),
|
|
166
|
+
}, s = {
|
|
167
|
+
ListMark: (a, c, i, d = !0) => h.mark({ class: `${i} lm ${d ? "sw" : ""}` }).range(a, c),
|
|
168
|
+
TaskMarker: (a, c, i, d = !0) => {
|
|
169
|
+
const b = t.state.doc.sliceString(a + 1, c - 1) === "x";
|
|
170
|
+
return d ? h.mark({ class: `tm ${b ? "ck" : ""}` }).range(a, c) : h.replace({
|
|
171
|
+
widget: new ue(b)
|
|
172
|
+
}).range(a, c);
|
|
173
|
+
}
|
|
174
|
+
}, g = [], l = [];
|
|
175
|
+
return E(t, {
|
|
176
|
+
enter: ({ type: a, from: c, to: i }) => a.name in n ? (l.push({ name: a.name, from: c, to: i }), !0) : (a.name in s && g.push(s[a.name](
|
|
177
|
+
c,
|
|
178
|
+
i,
|
|
179
|
+
n[l.slice(-1)[0].name],
|
|
180
|
+
v(t, c, i)
|
|
181
|
+
)), o.includes(a.name)),
|
|
182
|
+
leave: ({ type: { name: a }, from: c, to: i }) => {
|
|
183
|
+
const d = l.slice(-1)[0];
|
|
184
|
+
d && d.name === a && d.from === c && d.to === i && l.pop();
|
|
185
|
+
}
|
|
186
|
+
}), h.set(g, !1);
|
|
176
187
|
}
|
|
177
|
-
const
|
|
178
|
-
var
|
|
179
|
-
let
|
|
180
|
-
if (
|
|
181
|
-
},
|
|
182
|
-
const
|
|
183
|
-
let
|
|
184
|
-
if (
|
|
185
|
-
else if (
|
|
188
|
+
const pe = (t, r) => {
|
|
189
|
+
var n;
|
|
190
|
+
let o = t.target;
|
|
191
|
+
if (o.nodeName === "INPUT" && ((n = o.parentElement) != null && n.classList.contains("TaskMark"))) return ke(r, r.posAtDOM(o));
|
|
192
|
+
}, ke = (t, r) => {
|
|
193
|
+
const o = r - 2, n = r - 1;
|
|
194
|
+
let s = t.state.doc.sliceString(Math.max(0, o), n), g;
|
|
195
|
+
if (s === "x") g = { from: o, to: n, insert: " " };
|
|
196
|
+
else if (s === " ") g = { from: o, to: n, insert: "x" };
|
|
186
197
|
else return !1;
|
|
187
|
-
return t.dispatch({ changes:
|
|
188
|
-
},
|
|
198
|
+
return t.dispatch({ changes: g }), !0;
|
|
199
|
+
}, xe = (t) => {
|
|
189
200
|
const {
|
|
190
|
-
color:
|
|
201
|
+
color: r = "black"
|
|
191
202
|
} = t || {};
|
|
192
|
-
return
|
|
203
|
+
return B.baseTheme({
|
|
193
204
|
/* Bullet list Point */
|
|
194
205
|
".lm.bl": {
|
|
195
206
|
position: "relative",
|
|
@@ -200,7 +211,7 @@ const G = (t, o) => {
|
|
|
200
211
|
content: '""',
|
|
201
212
|
display: "inline",
|
|
202
213
|
position: "absolute",
|
|
203
|
-
backgroundColor:
|
|
214
|
+
backgroundColor: r,
|
|
204
215
|
borderRadius: "50%",
|
|
205
216
|
top: "50%",
|
|
206
217
|
left: ".5ch",
|
|
@@ -208,157 +219,4421 @@ const G = (t, o) => {
|
|
|
208
219
|
height: ".4em",
|
|
209
220
|
width: ".4em"
|
|
210
221
|
},
|
|
211
|
-
"
|
|
222
|
+
"&light .lm.bl::before": { backgroundColor: "black" },
|
|
223
|
+
"&dark .lm.bl::before": { backgroundColor: "white" },
|
|
224
|
+
"&.cm-focused .lm.bl.sw, &.cm-focused .lm.bl.sw::before": {
|
|
212
225
|
backgroundColor: "transparent",
|
|
213
226
|
color: "inherit"
|
|
214
227
|
}
|
|
215
228
|
});
|
|
216
|
-
},
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
]
|
|
220
|
-
|
|
221
|
-
|
|
229
|
+
}, G = (t = {}) => [
|
|
230
|
+
C(fe, {}, { eventHandlers: { mousedown: pe } }),
|
|
231
|
+
xe(t == null ? void 0 : t.color)
|
|
232
|
+
], ye = (t, r) => {
|
|
233
|
+
var n;
|
|
234
|
+
let o = t.target;
|
|
235
|
+
if (o.nodeName === "BUTTON" && ((n = o.parentElement) != null && n.classList.contains("wg-codeblock"))) {
|
|
236
|
+
const s = ["FencedCode", "CodeBlock"];
|
|
237
|
+
let g = "";
|
|
238
|
+
const l = {
|
|
239
|
+
enter: ({ type: { name: a }, from: c, to: i, node: d }) => (s.includes(a) && (g = Fe(r, d.toTree(), c, i)), !s.includes(a))
|
|
240
|
+
};
|
|
241
|
+
return H(r.state).iterate({
|
|
242
|
+
...l,
|
|
243
|
+
from: r.posAtDOM(o),
|
|
244
|
+
to: r.posAtDOM(o) + 2
|
|
245
|
+
}), navigator.clipboard.writeText(g), !0;
|
|
246
|
+
}
|
|
247
|
+
}, Fe = (t, r, o, n) => {
|
|
248
|
+
const s = ["CodeMark", "CodeInfo"];
|
|
249
|
+
let g = t.state.doc.sliceString(o, n), l = /* @__PURE__ */ new Set();
|
|
250
|
+
r.iterate({
|
|
251
|
+
enter({ type: { name: d }, from: b, node: y }) {
|
|
252
|
+
s.includes(d) && l.add(t.state.doc.lineAt(b + o).number);
|
|
253
|
+
}
|
|
254
|
+
});
|
|
255
|
+
const a = t.state.doc.lineAt(o), c = o - a.from, i = [];
|
|
256
|
+
return g.split(`
|
|
257
|
+
`).forEach((d, b) => {
|
|
258
|
+
l.has(b + a.number) || i.push(d.slice(c));
|
|
259
|
+
}), i.join(`
|
|
260
|
+
`);
|
|
261
|
+
};
|
|
262
|
+
class W extends S {
|
|
263
|
+
constructor(o, n, s) {
|
|
222
264
|
super();
|
|
223
|
-
|
|
224
|
-
this.classes = s;
|
|
265
|
+
L(this, "classes", "");
|
|
266
|
+
this.classes = o, this.width = n, this.marginLeft = s;
|
|
225
267
|
}
|
|
226
268
|
toDOM() {
|
|
227
|
-
let
|
|
228
|
-
return
|
|
269
|
+
let o = document.createElement("span");
|
|
270
|
+
return o.setAttribute("aria-hidden", "true"), o.className = this.classes + " vacio", o.textContent = " ", o.style.width = this.width, o.style.marginLeft = this.marginLeft, o;
|
|
229
271
|
}
|
|
230
272
|
ignoreEvent() {
|
|
231
273
|
return !1;
|
|
232
274
|
}
|
|
233
275
|
}
|
|
234
|
-
|
|
276
|
+
const we = (t) => `<svg class="cb-icon" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
277
|
+
<path class="cb-icon-path cb.i1" fill-rule="evenodd" clip-rule="evenodd" d="M15 0C15.5304 0 16.0391 0.210714 16.4142 0.585786C16.7893 0.960859 17 1.46957 17 2V12C17 12.5304 16.7893 13.0391 16.4142 13.4142C16.0391 13.7893 15.5304 14 15 14H14V6C14 4.93913 13.5786 3.92172 12.8284 3.17157C12.0783 2.42143 11.0609 2 10 2H7C6.64895 1.99924 6.30395 2.09135 6 2.267V2C6 1.46957 6.21071 0.960859 6.58579 0.585786C6.96086 0.210714 7.46957 0 8 0H15Z"/>
|
|
278
|
+
<path class="cb-icon-path cb.i1" fill-rule="evenodd" clip-rule="evenodd" d="M5 4.054V8H1.2C1.27464 7.84448 1.3691 7.69928 1.481 7.568L3.941 4.698C4.2169 4.37661 4.58771 4.15111 5 4.054ZM7 4V8C7 8.53043 6.78929 9.03914 6.41421 9.41421C6.03914 9.78929 5.53043 10 5 10H1V16C1 16.5304 1.21071 17.0391 1.58579 17.4142C1.96086 17.7893 2.46957 18 3 18H10C10.5304 18 11.0391 17.7893 11.4142 17.4142C11.7893 17.0391 12 16.5304 12 16V6C12 5.46957 11.7893 4.96086 11.4142 4.58579C11.0391 4.21071 10.5304 4 10 4H7Z"/>
|
|
279
|
+
</svg>`;
|
|
280
|
+
class Be extends S {
|
|
281
|
+
constructor(r, o) {
|
|
282
|
+
super(), this.type = r, this.code = o;
|
|
283
|
+
}
|
|
284
|
+
toDOM() {
|
|
285
|
+
let r = document.createElement("span");
|
|
286
|
+
r.setAttribute("aria-hidden", "true"), r.className = "wg-codeblock";
|
|
287
|
+
let o = document.createElement("button");
|
|
288
|
+
return o.className = "wg-codeblock-btn", o.innerHTML = we(), r.appendChild(o), r;
|
|
289
|
+
}
|
|
290
|
+
ignoreEvent() {
|
|
291
|
+
return !1;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
const M = [];
|
|
295
|
+
function I(t, r) {
|
|
235
296
|
const {
|
|
236
|
-
mode:
|
|
297
|
+
mode: o
|
|
237
298
|
/* type, mark */
|
|
238
|
-
} =
|
|
239
|
-
FencedCode:
|
|
240
|
-
CodeBlock:
|
|
241
|
-
},
|
|
242
|
-
CodeMark: (
|
|
243
|
-
CodeInfo: (
|
|
244
|
-
},
|
|
245
|
-
return
|
|
246
|
-
enter: ({ type: { name:
|
|
299
|
+
} = r, n = ["Document", "Blockquote", "ListItem", "BulletList", "OrderedList"], s = {
|
|
300
|
+
FencedCode: P,
|
|
301
|
+
CodeBlock: P
|
|
302
|
+
}, g = {
|
|
303
|
+
CodeMark: (a, c, i) => [h.mark({ class: "cb-mk" }).range(c, i)],
|
|
304
|
+
CodeInfo: (a, c, i) => [h.mark({ class: "cb-mi" }).range(c, i)]
|
|
305
|
+
}, l = [];
|
|
306
|
+
return E(t, {
|
|
307
|
+
enter: ({ type: { name: a }, from: c, to: i }) => (o === "type" && a in s && l.push(...s[a](t, c, i)), o === "mark" && a in g && l.push(...g[a](t, c, i)), n.includes(a) || a in s ? (M.push({ name: a, from: c, to: i }), !0) : !1),
|
|
308
|
+
Leave: ({ type: { name: a }, from: c, to: i }) => n.includes(a) || a in s ? (M.pop(), !0) : !1
|
|
247
309
|
}), {
|
|
248
|
-
type:
|
|
249
|
-
mark:
|
|
250
|
-
}[
|
|
310
|
+
type: h.set(l, !0),
|
|
311
|
+
mark: h.set(l, !0)
|
|
312
|
+
}[o];
|
|
251
313
|
}
|
|
252
|
-
const
|
|
253
|
-
const
|
|
314
|
+
const P = (t, r, o) => {
|
|
315
|
+
const n = [], s = M[M.length - 1], g = ["BulletList", "OrderedList", "ListItem"].some((f) => f === s.name), l = ["Blockquote"].some((f) => f === s.name), a = t.state.doc.lineAt(r), c = r - a.from, i = c > 0, d = v(t, a.from, o);
|
|
316
|
+
d || n.push(
|
|
317
|
+
h.widget({ widget: new Be("view.state.sliceDoc(from, to)", "code"), side: 0 }).range(r + 1)
|
|
318
|
+
);
|
|
319
|
+
const b = a.number, y = t.state.doc.sliceString(r, o).split(`
|
|
254
320
|
`).length;
|
|
255
|
-
for (let
|
|
256
|
-
const
|
|
257
|
-
|
|
321
|
+
for (let f = b; f < y + b; f++) {
|
|
322
|
+
const { from: u, to: F } = t.state.doc.line(f), w = "100% - 1.2ch", x = ["cb-content"];
|
|
323
|
+
d && x.push("sw"), f === b && x.push("cb-start"), f === y + b - 1 && x.push("cb-end");
|
|
324
|
+
const p = Math.max(u + c, 0);
|
|
325
|
+
if (F < p)
|
|
326
|
+
x.push("free"), n.push(
|
|
327
|
+
h.widget({
|
|
328
|
+
widget: new W(
|
|
329
|
+
x.join(" "),
|
|
330
|
+
`calc(${w} - ${p - u}ch)`,
|
|
331
|
+
`calc(${p - F}ch + 2px)`
|
|
332
|
+
),
|
|
333
|
+
side: 1
|
|
334
|
+
}).range(F)
|
|
335
|
+
), console.log("Hello World");
|
|
336
|
+
else if (p === F)
|
|
337
|
+
x.push("wg"), n.push(
|
|
338
|
+
h.widget({
|
|
339
|
+
widget: new W(
|
|
340
|
+
x.join(" "),
|
|
341
|
+
`calc(${w} - ${p - u}ch)`
|
|
342
|
+
),
|
|
343
|
+
side: 1
|
|
344
|
+
}).range(p)
|
|
345
|
+
);
|
|
346
|
+
else if (g || l || i) {
|
|
347
|
+
const N = { style: `width: calc(${w} - ${p - u}ch)` };
|
|
348
|
+
F > p && n.push(h.mark({ class: x.join(" "), attributes: N }).range(p, F)), u !== p && g && n.push(h.mark({ class: "cb-listsp" }).range(u, p)), u !== p && i && n.push(h.mark({ class: "cb-spacer" }).range(u, p)), u !== p && l && n.push(h.mark({ class: "cb-quote bq" }).range(u, p));
|
|
349
|
+
} else if (u !== F) {
|
|
350
|
+
const N = { style: `width: calc(${w})` };
|
|
351
|
+
n.push(h.mark({ class: x.join(" "), attributes: N }).range(u, F));
|
|
352
|
+
}
|
|
353
|
+
n.push(h.line({ class: "cb-line" }).range(u));
|
|
258
354
|
}
|
|
259
|
-
return
|
|
260
|
-
},
|
|
261
|
-
"
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
355
|
+
return n;
|
|
356
|
+
}, Ce = () => {
|
|
357
|
+
const n = "4px", s = "1lh";
|
|
358
|
+
return B.baseTheme({
|
|
359
|
+
".cb-start": { borderRadius: `${n} ${n} 0 0` },
|
|
360
|
+
".cb-end ": { borderRadius: `0 0 ${n} ${n}` },
|
|
361
|
+
".cb-start.cb-end": { borderRadius: `${n}` },
|
|
362
|
+
".cb-content": {
|
|
363
|
+
display: "inline-block",
|
|
364
|
+
marginLeft: "2px",
|
|
365
|
+
paddingLeft: "6px",
|
|
366
|
+
paddingRigth: "0px",
|
|
367
|
+
position: "relative"
|
|
368
|
+
},
|
|
369
|
+
".cb-content.wg": { cursor: "text" },
|
|
370
|
+
".cb-content.wg.start": {
|
|
371
|
+
maxWidth: "1px",
|
|
372
|
+
Width: "1px",
|
|
373
|
+
paddingLeft: "5px"
|
|
374
|
+
},
|
|
375
|
+
".cb-content.wg.end": {
|
|
376
|
+
marginLeft: "0",
|
|
377
|
+
paddingLeft: "0"
|
|
378
|
+
},
|
|
379
|
+
".cb-mi, .cb-mk": { color: "transparent" },
|
|
380
|
+
"&.cm-focused .cb-content.sw > .cb-mi, &.cm-focused .cb-content.sw > .cb-mk": { color: "inherit" },
|
|
381
|
+
"&.cm-focused .cb-content.sw .wg-codeblock": {
|
|
382
|
+
display: "none",
|
|
383
|
+
opacity: "0"
|
|
384
|
+
},
|
|
385
|
+
".wg-codeblock": {
|
|
386
|
+
display: "inline-block",
|
|
387
|
+
position: "absolute",
|
|
388
|
+
top: "0",
|
|
389
|
+
right: "0",
|
|
390
|
+
zIndex: "100",
|
|
391
|
+
margin: ".05lh"
|
|
392
|
+
},
|
|
393
|
+
".wg-codeblock-btn": {
|
|
394
|
+
padding: "0",
|
|
395
|
+
display: "inline-flex",
|
|
396
|
+
borderRadius: "999999px",
|
|
397
|
+
background: "transparent",
|
|
398
|
+
border: "none",
|
|
399
|
+
outline: "none",
|
|
400
|
+
justifyContent: "center",
|
|
401
|
+
alignItems: "center",
|
|
402
|
+
height: `calc(${s} + 4px )`,
|
|
403
|
+
width: "5ch"
|
|
404
|
+
},
|
|
405
|
+
".cb-icon": {
|
|
406
|
+
width: s,
|
|
407
|
+
height: s,
|
|
408
|
+
pointerEvents: "none",
|
|
409
|
+
fill: "currentColor",
|
|
410
|
+
opacity: "0.7"
|
|
411
|
+
},
|
|
412
|
+
".wg-codeblock-btn:hover": { background: "rgba(0, 0, 0, 0.07)" },
|
|
413
|
+
".wg-codeblock-btn:hover .cb-icon": { opacity: "1" },
|
|
414
|
+
".cb-content.cb-start.cb-end .wg-codeblock": {
|
|
415
|
+
marginTop: "0",
|
|
416
|
+
marginBottom: "0",
|
|
417
|
+
top: "0",
|
|
418
|
+
bottom: "0"
|
|
419
|
+
},
|
|
420
|
+
".cb-content.cb-start.cb-end .wg-codeblock-btn": {
|
|
421
|
+
boxSizing: "border-box",
|
|
422
|
+
maxHeight: "100%",
|
|
423
|
+
width: "5ch"
|
|
424
|
+
}
|
|
425
|
+
});
|
|
426
|
+
}, _ = (t) => [
|
|
427
|
+
C(I, { mode: "mark" }),
|
|
428
|
+
C(I, { mode: "type" }, { eventHandlers: { mousedown: ye } }),
|
|
429
|
+
Ce()
|
|
292
430
|
];
|
|
293
|
-
function
|
|
294
|
-
const
|
|
295
|
-
ATXHeading1: (
|
|
296
|
-
ATXHeading2: (
|
|
297
|
-
ATXHeading3: (
|
|
298
|
-
ATXHeading4: (
|
|
299
|
-
ATXHeading5: (
|
|
300
|
-
ATXHeading6: (
|
|
301
|
-
},
|
|
302
|
-
HeaderMark: (
|
|
303
|
-
},
|
|
304
|
-
return
|
|
305
|
-
enter: ({ type:
|
|
306
|
-
}),
|
|
431
|
+
function Ne(t, r) {
|
|
432
|
+
const o = ["Document"], n = {
|
|
433
|
+
ATXHeading1: (l, a = !0) => h.line({ class: "h1 hg " + (a ? "sw" : "") }).range(l),
|
|
434
|
+
ATXHeading2: (l, a = !0) => h.line({ class: "h2 hg " + (a ? "sw" : "") }).range(l),
|
|
435
|
+
ATXHeading3: (l, a = !0) => h.line({ class: "h3 hg " + (a ? "sw" : "") }).range(l),
|
|
436
|
+
ATXHeading4: (l, a = !0) => h.line({ class: "h4 hg " + (a ? "sw" : "") }).range(l),
|
|
437
|
+
ATXHeading5: (l, a = !0) => h.line({ class: "h5 hg " + (a ? "sw" : "") }).range(l),
|
|
438
|
+
ATXHeading6: (l, a = !0) => h.line({ class: "h6 hg " + (a ? "sw" : "") }).range(l)
|
|
439
|
+
}, s = {
|
|
440
|
+
HeaderMark: (l, a) => h.mark({ class: "mk" }).range(l, a)
|
|
441
|
+
}, g = [];
|
|
442
|
+
return E(t, {
|
|
443
|
+
enter: ({ type: l, from: a, to: c }) => (l.name in n && g.push(n[l.name](a, v(t, a, c))), l.name in s && g.push(s[l.name](a, c + 1)), o.includes(l.name) || l.name in n)
|
|
444
|
+
}), h.set(g, !1);
|
|
307
445
|
}
|
|
308
|
-
const
|
|
446
|
+
const ve = B.baseTheme({
|
|
309
447
|
".h1 ": { fontSize: "2.6rem" },
|
|
310
448
|
".h2 ": { fontSize: "2.0rem" },
|
|
311
449
|
".h3 ": { fontSize: "1.8rem" },
|
|
312
450
|
".h4 ": { fontSize: "1.6rem" },
|
|
313
451
|
".h5 ": { fontSize: "1.4rem" },
|
|
314
452
|
".h6 ": { fontSize: "1.2rem" }
|
|
315
|
-
}),
|
|
453
|
+
}), Ee = B.baseTheme({
|
|
316
454
|
".hg .mk": { fontSize: "0" },
|
|
317
|
-
".hg.sw .mk": { fontSize: "inherit" }
|
|
318
|
-
}),
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
],
|
|
455
|
+
"&.cm-focused .hg.sw .mk": { fontSize: "inherit" }
|
|
456
|
+
}), Y = (t = {}) => [
|
|
457
|
+
C(Ne, {}),
|
|
458
|
+
ve,
|
|
459
|
+
Ee
|
|
460
|
+
], Ae = {
|
|
461
|
+
version: "1.7.1",
|
|
462
|
+
latte: {
|
|
463
|
+
name: "Latte",
|
|
464
|
+
emoji: "🌻",
|
|
465
|
+
order: 0,
|
|
466
|
+
dark: !1,
|
|
467
|
+
colors: {
|
|
468
|
+
rosewater: {
|
|
469
|
+
name: "Rosewater",
|
|
470
|
+
order: 0,
|
|
471
|
+
hex: "#dc8a78",
|
|
472
|
+
rgb: {
|
|
473
|
+
r: 220,
|
|
474
|
+
g: 138,
|
|
475
|
+
b: 120
|
|
476
|
+
},
|
|
477
|
+
hsl: {
|
|
478
|
+
h: 10.799999999999995,
|
|
479
|
+
s: 0.5882352941176472,
|
|
480
|
+
l: 0.6666666666666667
|
|
481
|
+
},
|
|
482
|
+
accent: !0
|
|
483
|
+
},
|
|
484
|
+
flamingo: {
|
|
485
|
+
name: "Flamingo",
|
|
486
|
+
order: 1,
|
|
487
|
+
hex: "#dd7878",
|
|
488
|
+
rgb: {
|
|
489
|
+
r: 221,
|
|
490
|
+
g: 120,
|
|
491
|
+
b: 120
|
|
492
|
+
},
|
|
493
|
+
hsl: {
|
|
494
|
+
h: 0,
|
|
495
|
+
s: 0.5976331360946746,
|
|
496
|
+
l: 0.6686274509803922
|
|
497
|
+
},
|
|
498
|
+
accent: !0
|
|
499
|
+
},
|
|
500
|
+
pink: {
|
|
501
|
+
name: "Pink",
|
|
502
|
+
order: 2,
|
|
503
|
+
hex: "#ea76cb",
|
|
504
|
+
rgb: {
|
|
505
|
+
r: 234,
|
|
506
|
+
g: 118,
|
|
507
|
+
b: 203
|
|
508
|
+
},
|
|
509
|
+
hsl: {
|
|
510
|
+
h: 316.0344827586207,
|
|
511
|
+
s: 0.7341772151898731,
|
|
512
|
+
l: 0.6901960784313725
|
|
513
|
+
},
|
|
514
|
+
accent: !0
|
|
515
|
+
},
|
|
516
|
+
mauve: {
|
|
517
|
+
name: "Mauve",
|
|
518
|
+
order: 3,
|
|
519
|
+
hex: "#8839ef",
|
|
520
|
+
rgb: {
|
|
521
|
+
r: 136,
|
|
522
|
+
g: 57,
|
|
523
|
+
b: 239
|
|
524
|
+
},
|
|
525
|
+
hsl: {
|
|
526
|
+
h: 266.0439560439561,
|
|
527
|
+
s: 0.8504672897196262,
|
|
528
|
+
l: 0.5803921568627451
|
|
529
|
+
},
|
|
530
|
+
accent: !0
|
|
531
|
+
},
|
|
532
|
+
red: {
|
|
533
|
+
name: "Red",
|
|
534
|
+
order: 4,
|
|
535
|
+
hex: "#d20f39",
|
|
536
|
+
rgb: {
|
|
537
|
+
r: 210,
|
|
538
|
+
g: 15,
|
|
539
|
+
b: 57
|
|
540
|
+
},
|
|
541
|
+
hsl: {
|
|
542
|
+
h: 347.0769230769231,
|
|
543
|
+
s: 0.8666666666666666,
|
|
544
|
+
l: 0.4411764705882353
|
|
545
|
+
},
|
|
546
|
+
accent: !0
|
|
547
|
+
},
|
|
548
|
+
maroon: {
|
|
549
|
+
name: "Maroon",
|
|
550
|
+
order: 5,
|
|
551
|
+
hex: "#e64553",
|
|
552
|
+
rgb: {
|
|
553
|
+
r: 230,
|
|
554
|
+
g: 69,
|
|
555
|
+
b: 83
|
|
556
|
+
},
|
|
557
|
+
hsl: {
|
|
558
|
+
h: 354.78260869565213,
|
|
559
|
+
s: 0.76303317535545,
|
|
560
|
+
l: 0.5862745098039216
|
|
561
|
+
},
|
|
562
|
+
accent: !0
|
|
563
|
+
},
|
|
564
|
+
peach: {
|
|
565
|
+
name: "Peach",
|
|
566
|
+
order: 6,
|
|
567
|
+
hex: "#fe640b",
|
|
568
|
+
rgb: {
|
|
569
|
+
r: 254,
|
|
570
|
+
g: 100,
|
|
571
|
+
b: 11
|
|
572
|
+
},
|
|
573
|
+
hsl: {
|
|
574
|
+
h: 21.975308641975307,
|
|
575
|
+
s: 0.9918367346938776,
|
|
576
|
+
l: 0.5196078431372549
|
|
577
|
+
},
|
|
578
|
+
accent: !0
|
|
579
|
+
},
|
|
580
|
+
yellow: {
|
|
581
|
+
name: "Yellow",
|
|
582
|
+
order: 7,
|
|
583
|
+
hex: "#df8e1d",
|
|
584
|
+
rgb: {
|
|
585
|
+
r: 223,
|
|
586
|
+
g: 142,
|
|
587
|
+
b: 29
|
|
588
|
+
},
|
|
589
|
+
hsl: {
|
|
590
|
+
h: 34.948453608247426,
|
|
591
|
+
s: 0.7698412698412698,
|
|
592
|
+
l: 0.49411764705882355
|
|
593
|
+
},
|
|
594
|
+
accent: !0
|
|
595
|
+
},
|
|
596
|
+
green: {
|
|
597
|
+
name: "Green",
|
|
598
|
+
order: 8,
|
|
599
|
+
hex: "#40a02b",
|
|
600
|
+
rgb: {
|
|
601
|
+
r: 64,
|
|
602
|
+
g: 160,
|
|
603
|
+
b: 43
|
|
604
|
+
},
|
|
605
|
+
hsl: {
|
|
606
|
+
h: 109.23076923076923,
|
|
607
|
+
s: 0.5763546798029556,
|
|
608
|
+
l: 0.39803921568627454
|
|
609
|
+
},
|
|
610
|
+
accent: !0
|
|
611
|
+
},
|
|
612
|
+
teal: {
|
|
613
|
+
name: "Teal",
|
|
614
|
+
order: 9,
|
|
615
|
+
hex: "#179299",
|
|
616
|
+
rgb: {
|
|
617
|
+
r: 23,
|
|
618
|
+
g: 146,
|
|
619
|
+
b: 153
|
|
620
|
+
},
|
|
621
|
+
hsl: {
|
|
622
|
+
h: 183.23076923076923,
|
|
623
|
+
s: 0.7386363636363636,
|
|
624
|
+
l: 0.34509803921568627
|
|
625
|
+
},
|
|
626
|
+
accent: !0
|
|
627
|
+
},
|
|
628
|
+
sky: {
|
|
629
|
+
name: "Sky",
|
|
630
|
+
order: 10,
|
|
631
|
+
hex: "#04a5e5",
|
|
632
|
+
rgb: {
|
|
633
|
+
r: 4,
|
|
634
|
+
g: 165,
|
|
635
|
+
b: 229
|
|
636
|
+
},
|
|
637
|
+
hsl: {
|
|
638
|
+
h: 197.0666666666667,
|
|
639
|
+
s: 0.965665236051502,
|
|
640
|
+
l: 0.45686274509803926
|
|
641
|
+
},
|
|
642
|
+
accent: !0
|
|
643
|
+
},
|
|
644
|
+
sapphire: {
|
|
645
|
+
name: "Sapphire",
|
|
646
|
+
order: 11,
|
|
647
|
+
hex: "#209fb5",
|
|
648
|
+
rgb: {
|
|
649
|
+
r: 32,
|
|
650
|
+
g: 159,
|
|
651
|
+
b: 181
|
|
652
|
+
},
|
|
653
|
+
hsl: {
|
|
654
|
+
h: 188.85906040268458,
|
|
655
|
+
s: 0.6995305164319249,
|
|
656
|
+
l: 0.4176470588235294
|
|
657
|
+
},
|
|
658
|
+
accent: !0
|
|
659
|
+
},
|
|
660
|
+
blue: {
|
|
661
|
+
name: "Blue",
|
|
662
|
+
order: 12,
|
|
663
|
+
hex: "#1e66f5",
|
|
664
|
+
rgb: {
|
|
665
|
+
r: 30,
|
|
666
|
+
g: 102,
|
|
667
|
+
b: 245
|
|
668
|
+
},
|
|
669
|
+
hsl: {
|
|
670
|
+
h: 219.90697674418607,
|
|
671
|
+
s: 0.9148936170212768,
|
|
672
|
+
l: 0.5392156862745098
|
|
673
|
+
},
|
|
674
|
+
accent: !0
|
|
675
|
+
},
|
|
676
|
+
lavender: {
|
|
677
|
+
name: "Lavender",
|
|
678
|
+
order: 13,
|
|
679
|
+
hex: "#7287fd",
|
|
680
|
+
rgb: {
|
|
681
|
+
r: 114,
|
|
682
|
+
g: 135,
|
|
683
|
+
b: 253
|
|
684
|
+
},
|
|
685
|
+
hsl: {
|
|
686
|
+
h: 230.93525179856115,
|
|
687
|
+
s: 0.9720279720279721,
|
|
688
|
+
l: 0.7196078431372549
|
|
689
|
+
},
|
|
690
|
+
accent: !0
|
|
691
|
+
},
|
|
692
|
+
text: {
|
|
693
|
+
name: "Text",
|
|
694
|
+
order: 14,
|
|
695
|
+
hex: "#4c4f69",
|
|
696
|
+
rgb: {
|
|
697
|
+
r: 76,
|
|
698
|
+
g: 79,
|
|
699
|
+
b: 105
|
|
700
|
+
},
|
|
701
|
+
hsl: {
|
|
702
|
+
h: 233.79310344827587,
|
|
703
|
+
s: 0.16022099447513813,
|
|
704
|
+
l: 0.3549019607843137
|
|
705
|
+
},
|
|
706
|
+
accent: !1
|
|
707
|
+
},
|
|
708
|
+
subtext1: {
|
|
709
|
+
name: "Subtext 1",
|
|
710
|
+
order: 15,
|
|
711
|
+
hex: "#5c5f77",
|
|
712
|
+
rgb: {
|
|
713
|
+
r: 92,
|
|
714
|
+
g: 95,
|
|
715
|
+
b: 119
|
|
716
|
+
},
|
|
717
|
+
hsl: {
|
|
718
|
+
h: 233.33333333333334,
|
|
719
|
+
s: 0.1279620853080569,
|
|
720
|
+
l: 0.4137254901960784
|
|
721
|
+
},
|
|
722
|
+
accent: !1
|
|
723
|
+
},
|
|
724
|
+
subtext0: {
|
|
725
|
+
name: "Subtext 0",
|
|
726
|
+
order: 16,
|
|
727
|
+
hex: "#6c6f85",
|
|
728
|
+
rgb: {
|
|
729
|
+
r: 108,
|
|
730
|
+
g: 111,
|
|
731
|
+
b: 133
|
|
732
|
+
},
|
|
733
|
+
hsl: {
|
|
734
|
+
h: 232.79999999999998,
|
|
735
|
+
s: 0.10373443983402494,
|
|
736
|
+
l: 0.4725490196078431
|
|
737
|
+
},
|
|
738
|
+
accent: !1
|
|
739
|
+
},
|
|
740
|
+
overlay2: {
|
|
741
|
+
name: "Overlay 2",
|
|
742
|
+
order: 17,
|
|
743
|
+
hex: "#7c7f93",
|
|
744
|
+
rgb: {
|
|
745
|
+
r: 124,
|
|
746
|
+
g: 127,
|
|
747
|
+
b: 147
|
|
748
|
+
},
|
|
749
|
+
hsl: {
|
|
750
|
+
h: 232.17391304347825,
|
|
751
|
+
s: 0.09623430962343092,
|
|
752
|
+
l: 0.5313725490196078
|
|
753
|
+
},
|
|
754
|
+
accent: !1
|
|
755
|
+
},
|
|
756
|
+
overlay1: {
|
|
757
|
+
name: "Overlay 1",
|
|
758
|
+
order: 18,
|
|
759
|
+
hex: "#8c8fa1",
|
|
760
|
+
rgb: {
|
|
761
|
+
r: 140,
|
|
762
|
+
g: 143,
|
|
763
|
+
b: 161
|
|
764
|
+
},
|
|
765
|
+
hsl: {
|
|
766
|
+
h: 231.42857142857144,
|
|
767
|
+
s: 0.10047846889952144,
|
|
768
|
+
l: 0.5901960784313726
|
|
769
|
+
},
|
|
770
|
+
accent: !1
|
|
771
|
+
},
|
|
772
|
+
overlay0: {
|
|
773
|
+
name: "Overlay 0",
|
|
774
|
+
order: 19,
|
|
775
|
+
hex: "#9ca0b0",
|
|
776
|
+
rgb: {
|
|
777
|
+
r: 156,
|
|
778
|
+
g: 160,
|
|
779
|
+
b: 176
|
|
780
|
+
},
|
|
781
|
+
hsl: {
|
|
782
|
+
h: 228.00000000000003,
|
|
783
|
+
s: 0.11235955056179768,
|
|
784
|
+
l: 0.6509803921568628
|
|
785
|
+
},
|
|
786
|
+
accent: !1
|
|
787
|
+
},
|
|
788
|
+
surface2: {
|
|
789
|
+
name: "Surface 2",
|
|
790
|
+
order: 20,
|
|
791
|
+
hex: "#acb0be",
|
|
792
|
+
rgb: {
|
|
793
|
+
r: 172,
|
|
794
|
+
g: 176,
|
|
795
|
+
b: 190
|
|
796
|
+
},
|
|
797
|
+
hsl: {
|
|
798
|
+
h: 226.6666666666667,
|
|
799
|
+
s: 0.12162162162162159,
|
|
800
|
+
l: 0.7098039215686275
|
|
801
|
+
},
|
|
802
|
+
accent: !1
|
|
803
|
+
},
|
|
804
|
+
surface1: {
|
|
805
|
+
name: "Surface 1",
|
|
806
|
+
order: 21,
|
|
807
|
+
hex: "#bcc0cc",
|
|
808
|
+
rgb: {
|
|
809
|
+
r: 188,
|
|
810
|
+
g: 192,
|
|
811
|
+
b: 204
|
|
812
|
+
},
|
|
813
|
+
hsl: {
|
|
814
|
+
h: 225.00000000000003,
|
|
815
|
+
s: 0.13559322033898308,
|
|
816
|
+
l: 0.7686274509803922
|
|
817
|
+
},
|
|
818
|
+
accent: !1
|
|
819
|
+
},
|
|
820
|
+
surface0: {
|
|
821
|
+
name: "Surface 0",
|
|
822
|
+
order: 22,
|
|
823
|
+
hex: "#ccd0da",
|
|
824
|
+
rgb: {
|
|
825
|
+
r: 204,
|
|
826
|
+
g: 208,
|
|
827
|
+
b: 218
|
|
828
|
+
},
|
|
829
|
+
hsl: {
|
|
830
|
+
h: 222.85714285714292,
|
|
831
|
+
s: 0.1590909090909089,
|
|
832
|
+
l: 0.8274509803921568
|
|
833
|
+
},
|
|
834
|
+
accent: !1
|
|
835
|
+
},
|
|
836
|
+
base: {
|
|
837
|
+
name: "Base",
|
|
838
|
+
order: 23,
|
|
839
|
+
hex: "#eff1f5",
|
|
840
|
+
rgb: {
|
|
841
|
+
r: 239,
|
|
842
|
+
g: 241,
|
|
843
|
+
b: 245
|
|
844
|
+
},
|
|
845
|
+
hsl: {
|
|
846
|
+
h: 220.00000000000009,
|
|
847
|
+
s: 0.23076923076923136,
|
|
848
|
+
l: 0.9490196078431372
|
|
849
|
+
},
|
|
850
|
+
accent: !1
|
|
851
|
+
},
|
|
852
|
+
mantle: {
|
|
853
|
+
name: "Mantle",
|
|
854
|
+
order: 24,
|
|
855
|
+
hex: "#e6e9ef",
|
|
856
|
+
rgb: {
|
|
857
|
+
r: 230,
|
|
858
|
+
g: 233,
|
|
859
|
+
b: 239
|
|
860
|
+
},
|
|
861
|
+
hsl: {
|
|
862
|
+
h: 220.00000000000006,
|
|
863
|
+
s: 0.21951219512195116,
|
|
864
|
+
l: 0.919607843137255
|
|
865
|
+
},
|
|
866
|
+
accent: !1
|
|
867
|
+
},
|
|
868
|
+
crust: {
|
|
869
|
+
name: "Crust",
|
|
870
|
+
order: 25,
|
|
871
|
+
hex: "#dce0e8",
|
|
872
|
+
rgb: {
|
|
873
|
+
r: 220,
|
|
874
|
+
g: 224,
|
|
875
|
+
b: 232
|
|
876
|
+
},
|
|
877
|
+
hsl: {
|
|
878
|
+
h: 220.00000000000006,
|
|
879
|
+
s: 0.20689655172413762,
|
|
880
|
+
l: 0.8862745098039215
|
|
881
|
+
},
|
|
882
|
+
accent: !1
|
|
883
|
+
}
|
|
884
|
+
},
|
|
885
|
+
ansiColors: {
|
|
886
|
+
black: {
|
|
887
|
+
name: "Black",
|
|
888
|
+
order: 0,
|
|
889
|
+
normal: {
|
|
890
|
+
name: "Black",
|
|
891
|
+
hex: "#5c5f77",
|
|
892
|
+
rgb: {
|
|
893
|
+
r: 92,
|
|
894
|
+
g: 95,
|
|
895
|
+
b: 119
|
|
896
|
+
},
|
|
897
|
+
hsl: {
|
|
898
|
+
h: 233.33333333333334,
|
|
899
|
+
s: 0.1279620853080569,
|
|
900
|
+
l: 0.4137254901960784
|
|
901
|
+
},
|
|
902
|
+
code: 0
|
|
903
|
+
},
|
|
904
|
+
bright: {
|
|
905
|
+
name: "Bright Black",
|
|
906
|
+
hex: "#6c6f85",
|
|
907
|
+
rgb: {
|
|
908
|
+
r: 108,
|
|
909
|
+
g: 111,
|
|
910
|
+
b: 133
|
|
911
|
+
},
|
|
912
|
+
hsl: {
|
|
913
|
+
h: 232.79999999999998,
|
|
914
|
+
s: 0.10373443983402494,
|
|
915
|
+
l: 0.4725490196078431
|
|
916
|
+
},
|
|
917
|
+
code: 8
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
red: {
|
|
921
|
+
name: "Red",
|
|
922
|
+
order: 1,
|
|
923
|
+
normal: {
|
|
924
|
+
name: "Red",
|
|
925
|
+
hex: "#d20f39",
|
|
926
|
+
rgb: {
|
|
927
|
+
r: 210,
|
|
928
|
+
g: 15,
|
|
929
|
+
b: 57
|
|
930
|
+
},
|
|
931
|
+
hsl: {
|
|
932
|
+
h: 347.0769230769231,
|
|
933
|
+
s: 0.8666666666666666,
|
|
934
|
+
l: 0.4411764705882353
|
|
935
|
+
},
|
|
936
|
+
code: 1
|
|
937
|
+
},
|
|
938
|
+
bright: {
|
|
939
|
+
name: "Bright Red",
|
|
940
|
+
hex: "#de293e",
|
|
941
|
+
rgb: {
|
|
942
|
+
r: 222,
|
|
943
|
+
g: 41,
|
|
944
|
+
b: 62
|
|
945
|
+
},
|
|
946
|
+
hsl: {
|
|
947
|
+
h: 353.0386740331492,
|
|
948
|
+
s: 0.7327935222672065,
|
|
949
|
+
l: 0.515686274509804
|
|
950
|
+
},
|
|
951
|
+
code: 9
|
|
952
|
+
}
|
|
953
|
+
},
|
|
954
|
+
green: {
|
|
955
|
+
name: "Green",
|
|
956
|
+
order: 2,
|
|
957
|
+
normal: {
|
|
958
|
+
name: "Green",
|
|
959
|
+
hex: "#40a02b",
|
|
960
|
+
rgb: {
|
|
961
|
+
r: 64,
|
|
962
|
+
g: 160,
|
|
963
|
+
b: 43
|
|
964
|
+
},
|
|
965
|
+
hsl: {
|
|
966
|
+
h: 109.23076923076923,
|
|
967
|
+
s: 0.5763546798029556,
|
|
968
|
+
l: 0.39803921568627454
|
|
969
|
+
},
|
|
970
|
+
code: 2
|
|
971
|
+
},
|
|
972
|
+
bright: {
|
|
973
|
+
name: "Bright Green",
|
|
974
|
+
hex: "#49af3d",
|
|
975
|
+
rgb: {
|
|
976
|
+
r: 73,
|
|
977
|
+
g: 175,
|
|
978
|
+
b: 61
|
|
979
|
+
},
|
|
980
|
+
hsl: {
|
|
981
|
+
h: 113.68421052631581,
|
|
982
|
+
s: 0.48305084745762705,
|
|
983
|
+
l: 0.4627450980392157
|
|
984
|
+
},
|
|
985
|
+
code: 10
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
yellow: {
|
|
989
|
+
name: "Yellow",
|
|
990
|
+
order: 3,
|
|
991
|
+
normal: {
|
|
992
|
+
name: "Yellow",
|
|
993
|
+
hex: "#df8e1d",
|
|
994
|
+
rgb: {
|
|
995
|
+
r: 223,
|
|
996
|
+
g: 142,
|
|
997
|
+
b: 29
|
|
998
|
+
},
|
|
999
|
+
hsl: {
|
|
1000
|
+
h: 34.948453608247426,
|
|
1001
|
+
s: 0.7698412698412698,
|
|
1002
|
+
l: 0.49411764705882355
|
|
1003
|
+
},
|
|
1004
|
+
code: 3
|
|
1005
|
+
},
|
|
1006
|
+
bright: {
|
|
1007
|
+
name: "Bright Yellow",
|
|
1008
|
+
hex: "#eea02d",
|
|
1009
|
+
rgb: {
|
|
1010
|
+
r: 238,
|
|
1011
|
+
g: 160,
|
|
1012
|
+
b: 45
|
|
1013
|
+
},
|
|
1014
|
+
hsl: {
|
|
1015
|
+
h: 35.751295336787564,
|
|
1016
|
+
s: 0.8502202643171807,
|
|
1017
|
+
l: 0.5549019607843138
|
|
1018
|
+
},
|
|
1019
|
+
code: 11
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
blue: {
|
|
1023
|
+
name: "Blue",
|
|
1024
|
+
order: 4,
|
|
1025
|
+
normal: {
|
|
1026
|
+
name: "Blue",
|
|
1027
|
+
hex: "#1e66f5",
|
|
1028
|
+
rgb: {
|
|
1029
|
+
r: 30,
|
|
1030
|
+
g: 102,
|
|
1031
|
+
b: 245
|
|
1032
|
+
},
|
|
1033
|
+
hsl: {
|
|
1034
|
+
h: 219.90697674418607,
|
|
1035
|
+
s: 0.9148936170212768,
|
|
1036
|
+
l: 0.5392156862745098
|
|
1037
|
+
},
|
|
1038
|
+
code: 4
|
|
1039
|
+
},
|
|
1040
|
+
bright: {
|
|
1041
|
+
name: "Bright Blue",
|
|
1042
|
+
hex: "#456eff",
|
|
1043
|
+
rgb: {
|
|
1044
|
+
r: 69,
|
|
1045
|
+
g: 110,
|
|
1046
|
+
b: 255
|
|
1047
|
+
},
|
|
1048
|
+
hsl: {
|
|
1049
|
+
h: 226.77419354838707,
|
|
1050
|
+
s: 1,
|
|
1051
|
+
l: 0.6352941176470588
|
|
1052
|
+
},
|
|
1053
|
+
code: 12
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
magenta: {
|
|
1057
|
+
name: "Magenta",
|
|
1058
|
+
order: 5,
|
|
1059
|
+
normal: {
|
|
1060
|
+
name: "Magenta",
|
|
1061
|
+
hex: "#ea76cb",
|
|
1062
|
+
rgb: {
|
|
1063
|
+
r: 234,
|
|
1064
|
+
g: 118,
|
|
1065
|
+
b: 203
|
|
1066
|
+
},
|
|
1067
|
+
hsl: {
|
|
1068
|
+
h: 316.0344827586207,
|
|
1069
|
+
s: 0.7341772151898731,
|
|
1070
|
+
l: 0.6901960784313725
|
|
1071
|
+
},
|
|
1072
|
+
code: 5
|
|
1073
|
+
},
|
|
1074
|
+
bright: {
|
|
1075
|
+
name: "Bright Magenta",
|
|
1076
|
+
hex: "#fe85d8",
|
|
1077
|
+
rgb: {
|
|
1078
|
+
r: 254,
|
|
1079
|
+
g: 133,
|
|
1080
|
+
b: 216
|
|
1081
|
+
},
|
|
1082
|
+
hsl: {
|
|
1083
|
+
h: 318.8429752066116,
|
|
1084
|
+
s: 0.983739837398374,
|
|
1085
|
+
l: 0.7588235294117647
|
|
1086
|
+
},
|
|
1087
|
+
code: 13
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
cyan: {
|
|
1091
|
+
name: "Cyan",
|
|
1092
|
+
order: 6,
|
|
1093
|
+
normal: {
|
|
1094
|
+
name: "Cyan",
|
|
1095
|
+
hex: "#179299",
|
|
1096
|
+
rgb: {
|
|
1097
|
+
r: 23,
|
|
1098
|
+
g: 146,
|
|
1099
|
+
b: 153
|
|
1100
|
+
},
|
|
1101
|
+
hsl: {
|
|
1102
|
+
h: 183.23076923076923,
|
|
1103
|
+
s: 0.7386363636363636,
|
|
1104
|
+
l: 0.34509803921568627
|
|
1105
|
+
},
|
|
1106
|
+
code: 6
|
|
1107
|
+
},
|
|
1108
|
+
bright: {
|
|
1109
|
+
name: "Bright Cyan",
|
|
1110
|
+
hex: "#2d9fa8",
|
|
1111
|
+
rgb: {
|
|
1112
|
+
r: 45,
|
|
1113
|
+
g: 159,
|
|
1114
|
+
b: 168
|
|
1115
|
+
},
|
|
1116
|
+
hsl: {
|
|
1117
|
+
h: 184.39024390243904,
|
|
1118
|
+
s: 0.5774647887323943,
|
|
1119
|
+
l: 0.4176470588235294
|
|
1120
|
+
},
|
|
1121
|
+
code: 14
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
white: {
|
|
1125
|
+
name: "White",
|
|
1126
|
+
order: 7,
|
|
1127
|
+
normal: {
|
|
1128
|
+
name: "White",
|
|
1129
|
+
hex: "#acb0be",
|
|
1130
|
+
rgb: {
|
|
1131
|
+
r: 172,
|
|
1132
|
+
g: 176,
|
|
1133
|
+
b: 190
|
|
1134
|
+
},
|
|
1135
|
+
hsl: {
|
|
1136
|
+
h: 226.6666666666667,
|
|
1137
|
+
s: 0.12162162162162159,
|
|
1138
|
+
l: 0.7098039215686275
|
|
1139
|
+
},
|
|
1140
|
+
code: 7
|
|
1141
|
+
},
|
|
1142
|
+
bright: {
|
|
1143
|
+
name: "Bright White",
|
|
1144
|
+
hex: "#bcc0cc",
|
|
1145
|
+
rgb: {
|
|
1146
|
+
r: 188,
|
|
1147
|
+
g: 192,
|
|
1148
|
+
b: 204
|
|
1149
|
+
},
|
|
1150
|
+
hsl: {
|
|
1151
|
+
h: 225.00000000000003,
|
|
1152
|
+
s: 0.13559322033898308,
|
|
1153
|
+
l: 0.7686274509803922
|
|
1154
|
+
},
|
|
1155
|
+
code: 15
|
|
1156
|
+
}
|
|
1157
|
+
}
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
1160
|
+
frappe: {
|
|
1161
|
+
name: "Frappé",
|
|
1162
|
+
emoji: "🪴",
|
|
1163
|
+
order: 1,
|
|
1164
|
+
dark: !0,
|
|
1165
|
+
colors: {
|
|
1166
|
+
rosewater: {
|
|
1167
|
+
name: "Rosewater",
|
|
1168
|
+
order: 0,
|
|
1169
|
+
hex: "#f2d5cf",
|
|
1170
|
+
rgb: {
|
|
1171
|
+
r: 242,
|
|
1172
|
+
g: 213,
|
|
1173
|
+
b: 207
|
|
1174
|
+
},
|
|
1175
|
+
hsl: {
|
|
1176
|
+
h: 10.2857142857143,
|
|
1177
|
+
s: 0.5737704918032784,
|
|
1178
|
+
l: 0.8803921568627451
|
|
1179
|
+
},
|
|
1180
|
+
accent: !0
|
|
1181
|
+
},
|
|
1182
|
+
flamingo: {
|
|
1183
|
+
name: "Flamingo",
|
|
1184
|
+
order: 1,
|
|
1185
|
+
hex: "#eebebe",
|
|
1186
|
+
rgb: {
|
|
1187
|
+
r: 238,
|
|
1188
|
+
g: 190,
|
|
1189
|
+
b: 190
|
|
1190
|
+
},
|
|
1191
|
+
hsl: {
|
|
1192
|
+
h: 0,
|
|
1193
|
+
s: 0.5853658536585367,
|
|
1194
|
+
l: 0.8392156862745098
|
|
1195
|
+
},
|
|
1196
|
+
accent: !0
|
|
1197
|
+
},
|
|
1198
|
+
pink: {
|
|
1199
|
+
name: "Pink",
|
|
1200
|
+
order: 2,
|
|
1201
|
+
hex: "#f4b8e4",
|
|
1202
|
+
rgb: {
|
|
1203
|
+
r: 244,
|
|
1204
|
+
g: 184,
|
|
1205
|
+
b: 228
|
|
1206
|
+
},
|
|
1207
|
+
hsl: {
|
|
1208
|
+
h: 316,
|
|
1209
|
+
s: 0.7317073170731713,
|
|
1210
|
+
l: 0.8392156862745098
|
|
1211
|
+
},
|
|
1212
|
+
accent: !0
|
|
1213
|
+
},
|
|
1214
|
+
mauve: {
|
|
1215
|
+
name: "Mauve",
|
|
1216
|
+
order: 3,
|
|
1217
|
+
hex: "#ca9ee6",
|
|
1218
|
+
rgb: {
|
|
1219
|
+
r: 202,
|
|
1220
|
+
g: 158,
|
|
1221
|
+
b: 230
|
|
1222
|
+
},
|
|
1223
|
+
hsl: {
|
|
1224
|
+
h: 276.66666666666663,
|
|
1225
|
+
s: 0.5901639344262294,
|
|
1226
|
+
l: 0.7607843137254902
|
|
1227
|
+
},
|
|
1228
|
+
accent: !0
|
|
1229
|
+
},
|
|
1230
|
+
red: {
|
|
1231
|
+
name: "Red",
|
|
1232
|
+
order: 4,
|
|
1233
|
+
hex: "#e78284",
|
|
1234
|
+
rgb: {
|
|
1235
|
+
r: 231,
|
|
1236
|
+
g: 130,
|
|
1237
|
+
b: 132
|
|
1238
|
+
},
|
|
1239
|
+
hsl: {
|
|
1240
|
+
h: 358.8118811881188,
|
|
1241
|
+
s: 0.6778523489932885,
|
|
1242
|
+
l: 0.7078431372549019
|
|
1243
|
+
},
|
|
1244
|
+
accent: !0
|
|
1245
|
+
},
|
|
1246
|
+
maroon: {
|
|
1247
|
+
name: "Maroon",
|
|
1248
|
+
order: 5,
|
|
1249
|
+
hex: "#ea999c",
|
|
1250
|
+
rgb: {
|
|
1251
|
+
r: 234,
|
|
1252
|
+
g: 153,
|
|
1253
|
+
b: 156
|
|
1254
|
+
},
|
|
1255
|
+
hsl: {
|
|
1256
|
+
h: 357.77777777777777,
|
|
1257
|
+
s: 0.6585365853658534,
|
|
1258
|
+
l: 0.7588235294117647
|
|
1259
|
+
},
|
|
1260
|
+
accent: !0
|
|
1261
|
+
},
|
|
1262
|
+
peach: {
|
|
1263
|
+
name: "Peach",
|
|
1264
|
+
order: 6,
|
|
1265
|
+
hex: "#ef9f76",
|
|
1266
|
+
rgb: {
|
|
1267
|
+
r: 239,
|
|
1268
|
+
g: 159,
|
|
1269
|
+
b: 118
|
|
1270
|
+
},
|
|
1271
|
+
hsl: {
|
|
1272
|
+
h: 20.33057851239669,
|
|
1273
|
+
s: 0.7908496732026143,
|
|
1274
|
+
l: 0.7
|
|
1275
|
+
},
|
|
1276
|
+
accent: !0
|
|
1277
|
+
},
|
|
1278
|
+
yellow: {
|
|
1279
|
+
name: "Yellow",
|
|
1280
|
+
order: 7,
|
|
1281
|
+
hex: "#e5c890",
|
|
1282
|
+
rgb: {
|
|
1283
|
+
r: 229,
|
|
1284
|
+
g: 200,
|
|
1285
|
+
b: 144
|
|
1286
|
+
},
|
|
1287
|
+
hsl: {
|
|
1288
|
+
h: 39.52941176470588,
|
|
1289
|
+
s: 0.6204379562043796,
|
|
1290
|
+
l: 0.7313725490196079
|
|
1291
|
+
},
|
|
1292
|
+
accent: !0
|
|
1293
|
+
},
|
|
1294
|
+
green: {
|
|
1295
|
+
name: "Green",
|
|
1296
|
+
order: 8,
|
|
1297
|
+
hex: "#a6d189",
|
|
1298
|
+
rgb: {
|
|
1299
|
+
r: 166,
|
|
1300
|
+
g: 209,
|
|
1301
|
+
b: 137
|
|
1302
|
+
},
|
|
1303
|
+
hsl: {
|
|
1304
|
+
h: 95.83333333333331,
|
|
1305
|
+
s: 0.4390243902439024,
|
|
1306
|
+
l: 0.6784313725490196
|
|
1307
|
+
},
|
|
1308
|
+
accent: !0
|
|
1309
|
+
},
|
|
1310
|
+
teal: {
|
|
1311
|
+
name: "Teal",
|
|
1312
|
+
order: 9,
|
|
1313
|
+
hex: "#81c8be",
|
|
1314
|
+
rgb: {
|
|
1315
|
+
r: 129,
|
|
1316
|
+
g: 200,
|
|
1317
|
+
b: 190
|
|
1318
|
+
},
|
|
1319
|
+
hsl: {
|
|
1320
|
+
h: 171.5492957746479,
|
|
1321
|
+
s: 0.3922651933701657,
|
|
1322
|
+
l: 0.6450980392156862
|
|
1323
|
+
},
|
|
1324
|
+
accent: !0
|
|
1325
|
+
},
|
|
1326
|
+
sky: {
|
|
1327
|
+
name: "Sky",
|
|
1328
|
+
order: 10,
|
|
1329
|
+
hex: "#99d1db",
|
|
1330
|
+
rgb: {
|
|
1331
|
+
r: 153,
|
|
1332
|
+
g: 209,
|
|
1333
|
+
b: 219
|
|
1334
|
+
},
|
|
1335
|
+
hsl: {
|
|
1336
|
+
h: 189.09090909090907,
|
|
1337
|
+
s: 0.47826086956521735,
|
|
1338
|
+
l: 0.7294117647058823
|
|
1339
|
+
},
|
|
1340
|
+
accent: !0
|
|
1341
|
+
},
|
|
1342
|
+
sapphire: {
|
|
1343
|
+
name: "Sapphire",
|
|
1344
|
+
order: 11,
|
|
1345
|
+
hex: "#85c1dc",
|
|
1346
|
+
rgb: {
|
|
1347
|
+
r: 133,
|
|
1348
|
+
g: 193,
|
|
1349
|
+
b: 220
|
|
1350
|
+
},
|
|
1351
|
+
hsl: {
|
|
1352
|
+
h: 198.62068965517244,
|
|
1353
|
+
s: 0.5541401273885351,
|
|
1354
|
+
l: 0.692156862745098
|
|
1355
|
+
},
|
|
1356
|
+
accent: !0
|
|
1357
|
+
},
|
|
1358
|
+
blue: {
|
|
1359
|
+
name: "Blue",
|
|
1360
|
+
order: 12,
|
|
1361
|
+
hex: "#8caaee",
|
|
1362
|
+
rgb: {
|
|
1363
|
+
r: 140,
|
|
1364
|
+
g: 170,
|
|
1365
|
+
b: 238
|
|
1366
|
+
},
|
|
1367
|
+
hsl: {
|
|
1368
|
+
h: 221.6326530612245,
|
|
1369
|
+
s: 0.7424242424242424,
|
|
1370
|
+
l: 0.7411764705882353
|
|
1371
|
+
},
|
|
1372
|
+
accent: !0
|
|
1373
|
+
},
|
|
1374
|
+
lavender: {
|
|
1375
|
+
name: "Lavender",
|
|
1376
|
+
order: 13,
|
|
1377
|
+
hex: "#babbf1",
|
|
1378
|
+
rgb: {
|
|
1379
|
+
r: 186,
|
|
1380
|
+
g: 187,
|
|
1381
|
+
b: 241
|
|
1382
|
+
},
|
|
1383
|
+
hsl: {
|
|
1384
|
+
h: 238.90909090909093,
|
|
1385
|
+
s: 0.6626506024096385,
|
|
1386
|
+
l: 0.8372549019607842
|
|
1387
|
+
},
|
|
1388
|
+
accent: !0
|
|
1389
|
+
},
|
|
1390
|
+
text: {
|
|
1391
|
+
name: "Text",
|
|
1392
|
+
order: 14,
|
|
1393
|
+
hex: "#c6d0f5",
|
|
1394
|
+
rgb: {
|
|
1395
|
+
r: 198,
|
|
1396
|
+
g: 208,
|
|
1397
|
+
b: 245
|
|
1398
|
+
},
|
|
1399
|
+
hsl: {
|
|
1400
|
+
h: 227.2340425531915,
|
|
1401
|
+
s: 0.7014925373134333,
|
|
1402
|
+
l: 0.8686274509803922
|
|
1403
|
+
},
|
|
1404
|
+
accent: !1
|
|
1405
|
+
},
|
|
1406
|
+
subtext1: {
|
|
1407
|
+
name: "Subtext 1",
|
|
1408
|
+
order: 15,
|
|
1409
|
+
hex: "#b5bfe2",
|
|
1410
|
+
rgb: {
|
|
1411
|
+
r: 181,
|
|
1412
|
+
g: 191,
|
|
1413
|
+
b: 226
|
|
1414
|
+
},
|
|
1415
|
+
hsl: {
|
|
1416
|
+
h: 226.66666666666669,
|
|
1417
|
+
s: 0.43689320388349495,
|
|
1418
|
+
l: 0.7980392156862746
|
|
1419
|
+
},
|
|
1420
|
+
accent: !1
|
|
1421
|
+
},
|
|
1422
|
+
subtext0: {
|
|
1423
|
+
name: "Subtext 0",
|
|
1424
|
+
order: 16,
|
|
1425
|
+
hex: "#a5adce",
|
|
1426
|
+
rgb: {
|
|
1427
|
+
r: 165,
|
|
1428
|
+
g: 173,
|
|
1429
|
+
b: 206
|
|
1430
|
+
},
|
|
1431
|
+
hsl: {
|
|
1432
|
+
h: 228.29268292682926,
|
|
1433
|
+
s: 0.2949640287769784,
|
|
1434
|
+
l: 0.7274509803921569
|
|
1435
|
+
},
|
|
1436
|
+
accent: !1
|
|
1437
|
+
},
|
|
1438
|
+
overlay2: {
|
|
1439
|
+
name: "Overlay 2",
|
|
1440
|
+
order: 17,
|
|
1441
|
+
hex: "#949cbb",
|
|
1442
|
+
rgb: {
|
|
1443
|
+
r: 148,
|
|
1444
|
+
g: 156,
|
|
1445
|
+
b: 187
|
|
1446
|
+
},
|
|
1447
|
+
hsl: {
|
|
1448
|
+
h: 227.69230769230768,
|
|
1449
|
+
s: 0.22285714285714275,
|
|
1450
|
+
l: 0.6568627450980392
|
|
1451
|
+
},
|
|
1452
|
+
accent: !1
|
|
1453
|
+
},
|
|
1454
|
+
overlay1: {
|
|
1455
|
+
name: "Overlay 1",
|
|
1456
|
+
order: 18,
|
|
1457
|
+
hex: "#838ba7",
|
|
1458
|
+
rgb: {
|
|
1459
|
+
r: 131,
|
|
1460
|
+
g: 139,
|
|
1461
|
+
b: 167
|
|
1462
|
+
},
|
|
1463
|
+
hsl: {
|
|
1464
|
+
h: 226.66666666666669,
|
|
1465
|
+
s: 0.16981132075471703,
|
|
1466
|
+
l: 0.584313725490196
|
|
1467
|
+
},
|
|
1468
|
+
accent: !1
|
|
1469
|
+
},
|
|
1470
|
+
overlay0: {
|
|
1471
|
+
name: "Overlay 0",
|
|
1472
|
+
order: 19,
|
|
1473
|
+
hex: "#737994",
|
|
1474
|
+
rgb: {
|
|
1475
|
+
r: 115,
|
|
1476
|
+
g: 121,
|
|
1477
|
+
b: 148
|
|
1478
|
+
},
|
|
1479
|
+
hsl: {
|
|
1480
|
+
h: 229.0909090909091,
|
|
1481
|
+
s: 0.13360323886639683,
|
|
1482
|
+
l: 0.515686274509804
|
|
1483
|
+
},
|
|
1484
|
+
accent: !1
|
|
1485
|
+
},
|
|
1486
|
+
surface2: {
|
|
1487
|
+
name: "Surface 2",
|
|
1488
|
+
order: 20,
|
|
1489
|
+
hex: "#626880",
|
|
1490
|
+
rgb: {
|
|
1491
|
+
r: 98,
|
|
1492
|
+
g: 104,
|
|
1493
|
+
b: 128
|
|
1494
|
+
},
|
|
1495
|
+
hsl: {
|
|
1496
|
+
h: 228.00000000000003,
|
|
1497
|
+
s: 0.1327433628318584,
|
|
1498
|
+
l: 0.44313725490196076
|
|
1499
|
+
},
|
|
1500
|
+
accent: !1
|
|
1501
|
+
},
|
|
1502
|
+
surface1: {
|
|
1503
|
+
name: "Surface 1",
|
|
1504
|
+
order: 21,
|
|
1505
|
+
hex: "#51576d",
|
|
1506
|
+
rgb: {
|
|
1507
|
+
r: 81,
|
|
1508
|
+
g: 87,
|
|
1509
|
+
b: 109
|
|
1510
|
+
},
|
|
1511
|
+
hsl: {
|
|
1512
|
+
h: 227.14285714285714,
|
|
1513
|
+
s: 0.14736842105263157,
|
|
1514
|
+
l: 0.37254901960784315
|
|
1515
|
+
},
|
|
1516
|
+
accent: !1
|
|
1517
|
+
},
|
|
1518
|
+
surface0: {
|
|
1519
|
+
name: "Surface 0",
|
|
1520
|
+
order: 22,
|
|
1521
|
+
hex: "#414559",
|
|
1522
|
+
rgb: {
|
|
1523
|
+
r: 65,
|
|
1524
|
+
g: 69,
|
|
1525
|
+
b: 89
|
|
1526
|
+
},
|
|
1527
|
+
hsl: {
|
|
1528
|
+
h: 230.00000000000003,
|
|
1529
|
+
s: 0.15584415584415584,
|
|
1530
|
+
l: 0.30196078431372547
|
|
1531
|
+
},
|
|
1532
|
+
accent: !1
|
|
1533
|
+
},
|
|
1534
|
+
base: {
|
|
1535
|
+
name: "Base",
|
|
1536
|
+
order: 23,
|
|
1537
|
+
hex: "#303446",
|
|
1538
|
+
rgb: {
|
|
1539
|
+
r: 48,
|
|
1540
|
+
g: 52,
|
|
1541
|
+
b: 70
|
|
1542
|
+
},
|
|
1543
|
+
hsl: {
|
|
1544
|
+
h: 229.0909090909091,
|
|
1545
|
+
s: 0.18644067796610175,
|
|
1546
|
+
l: 0.23137254901960785
|
|
1547
|
+
},
|
|
1548
|
+
accent: !1
|
|
1549
|
+
},
|
|
1550
|
+
mantle: {
|
|
1551
|
+
name: "Mantle",
|
|
1552
|
+
order: 24,
|
|
1553
|
+
hex: "#292c3c",
|
|
1554
|
+
rgb: {
|
|
1555
|
+
r: 41,
|
|
1556
|
+
g: 44,
|
|
1557
|
+
b: 60
|
|
1558
|
+
},
|
|
1559
|
+
hsl: {
|
|
1560
|
+
h: 230.52631578947367,
|
|
1561
|
+
s: 0.18811881188118806,
|
|
1562
|
+
l: 0.19803921568627453
|
|
1563
|
+
},
|
|
1564
|
+
accent: !1
|
|
1565
|
+
},
|
|
1566
|
+
crust: {
|
|
1567
|
+
name: "Crust",
|
|
1568
|
+
order: 25,
|
|
1569
|
+
hex: "#232634",
|
|
1570
|
+
rgb: {
|
|
1571
|
+
r: 35,
|
|
1572
|
+
g: 38,
|
|
1573
|
+
b: 52
|
|
1574
|
+
},
|
|
1575
|
+
hsl: {
|
|
1576
|
+
h: 229.41176470588238,
|
|
1577
|
+
s: 0.19540229885057467,
|
|
1578
|
+
l: 0.17058823529411765
|
|
1579
|
+
},
|
|
1580
|
+
accent: !1
|
|
1581
|
+
}
|
|
1582
|
+
},
|
|
1583
|
+
ansiColors: {
|
|
1584
|
+
black: {
|
|
1585
|
+
name: "Black",
|
|
1586
|
+
order: 0,
|
|
1587
|
+
normal: {
|
|
1588
|
+
name: "Black",
|
|
1589
|
+
hex: "#51576d",
|
|
1590
|
+
rgb: {
|
|
1591
|
+
r: 81,
|
|
1592
|
+
g: 87,
|
|
1593
|
+
b: 109
|
|
1594
|
+
},
|
|
1595
|
+
hsl: {
|
|
1596
|
+
h: 227.14285714285714,
|
|
1597
|
+
s: 0.14736842105263157,
|
|
1598
|
+
l: 0.37254901960784315
|
|
1599
|
+
},
|
|
1600
|
+
code: 0
|
|
1601
|
+
},
|
|
1602
|
+
bright: {
|
|
1603
|
+
name: "Bright Black",
|
|
1604
|
+
hex: "#626880",
|
|
1605
|
+
rgb: {
|
|
1606
|
+
r: 98,
|
|
1607
|
+
g: 104,
|
|
1608
|
+
b: 128
|
|
1609
|
+
},
|
|
1610
|
+
hsl: {
|
|
1611
|
+
h: 228.00000000000003,
|
|
1612
|
+
s: 0.1327433628318584,
|
|
1613
|
+
l: 0.44313725490196076
|
|
1614
|
+
},
|
|
1615
|
+
code: 8
|
|
1616
|
+
}
|
|
1617
|
+
},
|
|
1618
|
+
red: {
|
|
1619
|
+
name: "Red",
|
|
1620
|
+
order: 1,
|
|
1621
|
+
normal: {
|
|
1622
|
+
name: "Red",
|
|
1623
|
+
hex: "#e78284",
|
|
1624
|
+
rgb: {
|
|
1625
|
+
r: 231,
|
|
1626
|
+
g: 130,
|
|
1627
|
+
b: 132
|
|
1628
|
+
},
|
|
1629
|
+
hsl: {
|
|
1630
|
+
h: 358.8118811881188,
|
|
1631
|
+
s: 0.6778523489932885,
|
|
1632
|
+
l: 0.7078431372549019
|
|
1633
|
+
},
|
|
1634
|
+
code: 1
|
|
1635
|
+
},
|
|
1636
|
+
bright: {
|
|
1637
|
+
name: "Bright Red",
|
|
1638
|
+
hex: "#e67172",
|
|
1639
|
+
rgb: {
|
|
1640
|
+
r: 230,
|
|
1641
|
+
g: 113,
|
|
1642
|
+
b: 114
|
|
1643
|
+
},
|
|
1644
|
+
hsl: {
|
|
1645
|
+
h: 359.4871794871795,
|
|
1646
|
+
s: 0.7005988023952096,
|
|
1647
|
+
l: 0.6725490196078432
|
|
1648
|
+
},
|
|
1649
|
+
code: 9
|
|
1650
|
+
}
|
|
1651
|
+
},
|
|
1652
|
+
green: {
|
|
1653
|
+
name: "Green",
|
|
1654
|
+
order: 2,
|
|
1655
|
+
normal: {
|
|
1656
|
+
name: "Green",
|
|
1657
|
+
hex: "#a6d189",
|
|
1658
|
+
rgb: {
|
|
1659
|
+
r: 166,
|
|
1660
|
+
g: 209,
|
|
1661
|
+
b: 137
|
|
1662
|
+
},
|
|
1663
|
+
hsl: {
|
|
1664
|
+
h: 95.83333333333331,
|
|
1665
|
+
s: 0.4390243902439024,
|
|
1666
|
+
l: 0.6784313725490196
|
|
1667
|
+
},
|
|
1668
|
+
code: 2
|
|
1669
|
+
},
|
|
1670
|
+
bright: {
|
|
1671
|
+
name: "Bright Green",
|
|
1672
|
+
hex: "#8ec772",
|
|
1673
|
+
rgb: {
|
|
1674
|
+
r: 142,
|
|
1675
|
+
g: 199,
|
|
1676
|
+
b: 114
|
|
1677
|
+
},
|
|
1678
|
+
hsl: {
|
|
1679
|
+
h: 100.23529411764706,
|
|
1680
|
+
s: 0.431472081218274,
|
|
1681
|
+
l: 0.6137254901960785
|
|
1682
|
+
},
|
|
1683
|
+
code: 10
|
|
1684
|
+
}
|
|
1685
|
+
},
|
|
1686
|
+
yellow: {
|
|
1687
|
+
name: "Yellow",
|
|
1688
|
+
order: 3,
|
|
1689
|
+
normal: {
|
|
1690
|
+
name: "Yellow",
|
|
1691
|
+
hex: "#e5c890",
|
|
1692
|
+
rgb: {
|
|
1693
|
+
r: 229,
|
|
1694
|
+
g: 200,
|
|
1695
|
+
b: 144
|
|
1696
|
+
},
|
|
1697
|
+
hsl: {
|
|
1698
|
+
h: 39.52941176470588,
|
|
1699
|
+
s: 0.6204379562043796,
|
|
1700
|
+
l: 0.7313725490196079
|
|
1701
|
+
},
|
|
1702
|
+
code: 3
|
|
1703
|
+
},
|
|
1704
|
+
bright: {
|
|
1705
|
+
name: "Bright Yellow",
|
|
1706
|
+
hex: "#d9ba73",
|
|
1707
|
+
rgb: {
|
|
1708
|
+
r: 217,
|
|
1709
|
+
g: 186,
|
|
1710
|
+
b: 115
|
|
1711
|
+
},
|
|
1712
|
+
hsl: {
|
|
1713
|
+
h: 41.764705882352935,
|
|
1714
|
+
s: 0.5730337078651685,
|
|
1715
|
+
l: 0.6509803921568628
|
|
1716
|
+
},
|
|
1717
|
+
code: 11
|
|
1718
|
+
}
|
|
1719
|
+
},
|
|
1720
|
+
blue: {
|
|
1721
|
+
name: "Blue",
|
|
1722
|
+
order: 4,
|
|
1723
|
+
normal: {
|
|
1724
|
+
name: "Blue",
|
|
1725
|
+
hex: "#8caaee",
|
|
1726
|
+
rgb: {
|
|
1727
|
+
r: 140,
|
|
1728
|
+
g: 170,
|
|
1729
|
+
b: 238
|
|
1730
|
+
},
|
|
1731
|
+
hsl: {
|
|
1732
|
+
h: 221.6326530612245,
|
|
1733
|
+
s: 0.7424242424242424,
|
|
1734
|
+
l: 0.7411764705882353
|
|
1735
|
+
},
|
|
1736
|
+
code: 4
|
|
1737
|
+
},
|
|
1738
|
+
bright: {
|
|
1739
|
+
name: "Bright Blue",
|
|
1740
|
+
hex: "#7b9ef0",
|
|
1741
|
+
rgb: {
|
|
1742
|
+
r: 123,
|
|
1743
|
+
g: 158,
|
|
1744
|
+
b: 240
|
|
1745
|
+
},
|
|
1746
|
+
hsl: {
|
|
1747
|
+
h: 222.05128205128207,
|
|
1748
|
+
s: 0.7959183673469388,
|
|
1749
|
+
l: 0.711764705882353
|
|
1750
|
+
},
|
|
1751
|
+
code: 12
|
|
1752
|
+
}
|
|
1753
|
+
},
|
|
1754
|
+
magenta: {
|
|
1755
|
+
name: "Magenta",
|
|
1756
|
+
order: 5,
|
|
1757
|
+
normal: {
|
|
1758
|
+
name: "Magenta",
|
|
1759
|
+
hex: "#f4b8e4",
|
|
1760
|
+
rgb: {
|
|
1761
|
+
r: 244,
|
|
1762
|
+
g: 184,
|
|
1763
|
+
b: 228
|
|
1764
|
+
},
|
|
1765
|
+
hsl: {
|
|
1766
|
+
h: 316,
|
|
1767
|
+
s: 0.7317073170731713,
|
|
1768
|
+
l: 0.8392156862745098
|
|
1769
|
+
},
|
|
1770
|
+
code: 5
|
|
1771
|
+
},
|
|
1772
|
+
bright: {
|
|
1773
|
+
name: "Bright Magenta",
|
|
1774
|
+
hex: "#f2a4db",
|
|
1775
|
+
rgb: {
|
|
1776
|
+
r: 242,
|
|
1777
|
+
g: 164,
|
|
1778
|
+
b: 219
|
|
1779
|
+
},
|
|
1780
|
+
hsl: {
|
|
1781
|
+
h: 317.6923076923077,
|
|
1782
|
+
s: 0.7499999999999998,
|
|
1783
|
+
l: 0.7960784313725491
|
|
1784
|
+
},
|
|
1785
|
+
code: 13
|
|
1786
|
+
}
|
|
1787
|
+
},
|
|
1788
|
+
cyan: {
|
|
1789
|
+
name: "Cyan",
|
|
1790
|
+
order: 6,
|
|
1791
|
+
normal: {
|
|
1792
|
+
name: "Cyan",
|
|
1793
|
+
hex: "#81c8be",
|
|
1794
|
+
rgb: {
|
|
1795
|
+
r: 129,
|
|
1796
|
+
g: 200,
|
|
1797
|
+
b: 190
|
|
1798
|
+
},
|
|
1799
|
+
hsl: {
|
|
1800
|
+
h: 171.5492957746479,
|
|
1801
|
+
s: 0.3922651933701657,
|
|
1802
|
+
l: 0.6450980392156862
|
|
1803
|
+
},
|
|
1804
|
+
code: 6
|
|
1805
|
+
},
|
|
1806
|
+
bright: {
|
|
1807
|
+
name: "Bright Cyan",
|
|
1808
|
+
hex: "#5abfb5",
|
|
1809
|
+
rgb: {
|
|
1810
|
+
r: 90,
|
|
1811
|
+
g: 191,
|
|
1812
|
+
b: 181
|
|
1813
|
+
},
|
|
1814
|
+
hsl: {
|
|
1815
|
+
h: 174.05940594059405,
|
|
1816
|
+
s: 0.44104803493449785,
|
|
1817
|
+
l: 0.5509803921568628
|
|
1818
|
+
},
|
|
1819
|
+
code: 14
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1822
|
+
white: {
|
|
1823
|
+
name: "White",
|
|
1824
|
+
order: 7,
|
|
1825
|
+
normal: {
|
|
1826
|
+
name: "White",
|
|
1827
|
+
hex: "#a5adce",
|
|
1828
|
+
rgb: {
|
|
1829
|
+
r: 165,
|
|
1830
|
+
g: 173,
|
|
1831
|
+
b: 206
|
|
1832
|
+
},
|
|
1833
|
+
hsl: {
|
|
1834
|
+
h: 228.29268292682926,
|
|
1835
|
+
s: 0.2949640287769784,
|
|
1836
|
+
l: 0.7274509803921569
|
|
1837
|
+
},
|
|
1838
|
+
code: 7
|
|
1839
|
+
},
|
|
1840
|
+
bright: {
|
|
1841
|
+
name: "Bright White",
|
|
1842
|
+
hex: "#b5bfe2",
|
|
1843
|
+
rgb: {
|
|
1844
|
+
r: 181,
|
|
1845
|
+
g: 191,
|
|
1846
|
+
b: 226
|
|
1847
|
+
},
|
|
1848
|
+
hsl: {
|
|
1849
|
+
h: 226.66666666666669,
|
|
1850
|
+
s: 0.43689320388349495,
|
|
1851
|
+
l: 0.7980392156862746
|
|
1852
|
+
},
|
|
1853
|
+
code: 15
|
|
1854
|
+
}
|
|
1855
|
+
}
|
|
1856
|
+
}
|
|
1857
|
+
},
|
|
1858
|
+
macchiato: {
|
|
1859
|
+
name: "Macchiato",
|
|
1860
|
+
emoji: "🌺",
|
|
1861
|
+
order: 2,
|
|
1862
|
+
dark: !0,
|
|
1863
|
+
colors: {
|
|
1864
|
+
rosewater: {
|
|
1865
|
+
name: "Rosewater",
|
|
1866
|
+
order: 0,
|
|
1867
|
+
hex: "#f4dbd6",
|
|
1868
|
+
rgb: {
|
|
1869
|
+
r: 244,
|
|
1870
|
+
g: 219,
|
|
1871
|
+
b: 214
|
|
1872
|
+
},
|
|
1873
|
+
hsl: {
|
|
1874
|
+
h: 9.999999999999963,
|
|
1875
|
+
s: 0.5769230769230775,
|
|
1876
|
+
l: 0.8980392156862745
|
|
1877
|
+
},
|
|
1878
|
+
accent: !0
|
|
1879
|
+
},
|
|
1880
|
+
flamingo: {
|
|
1881
|
+
name: "Flamingo",
|
|
1882
|
+
order: 1,
|
|
1883
|
+
hex: "#f0c6c6",
|
|
1884
|
+
rgb: {
|
|
1885
|
+
r: 240,
|
|
1886
|
+
g: 198,
|
|
1887
|
+
b: 198
|
|
1888
|
+
},
|
|
1889
|
+
hsl: {
|
|
1890
|
+
h: 0,
|
|
1891
|
+
s: 0.5833333333333333,
|
|
1892
|
+
l: 0.8588235294117648
|
|
1893
|
+
},
|
|
1894
|
+
accent: !0
|
|
1895
|
+
},
|
|
1896
|
+
pink: {
|
|
1897
|
+
name: "Pink",
|
|
1898
|
+
order: 2,
|
|
1899
|
+
hex: "#f5bde6",
|
|
1900
|
+
rgb: {
|
|
1901
|
+
r: 245,
|
|
1902
|
+
g: 189,
|
|
1903
|
+
b: 230
|
|
1904
|
+
},
|
|
1905
|
+
hsl: {
|
|
1906
|
+
h: 316.0714285714286,
|
|
1907
|
+
s: 0.7368421052631583,
|
|
1908
|
+
l: 0.8509803921568628
|
|
1909
|
+
},
|
|
1910
|
+
accent: !0
|
|
1911
|
+
},
|
|
1912
|
+
mauve: {
|
|
1913
|
+
name: "Mauve",
|
|
1914
|
+
order: 3,
|
|
1915
|
+
hex: "#c6a0f6",
|
|
1916
|
+
rgb: {
|
|
1917
|
+
r: 198,
|
|
1918
|
+
g: 160,
|
|
1919
|
+
b: 246
|
|
1920
|
+
},
|
|
1921
|
+
hsl: {
|
|
1922
|
+
h: 266.51162790697674,
|
|
1923
|
+
s: 0.8269230769230772,
|
|
1924
|
+
l: 0.7960784313725491
|
|
1925
|
+
},
|
|
1926
|
+
accent: !0
|
|
1927
|
+
},
|
|
1928
|
+
red: {
|
|
1929
|
+
name: "Red",
|
|
1930
|
+
order: 4,
|
|
1931
|
+
hex: "#ed8796",
|
|
1932
|
+
rgb: {
|
|
1933
|
+
r: 237,
|
|
1934
|
+
g: 135,
|
|
1935
|
+
b: 150
|
|
1936
|
+
},
|
|
1937
|
+
hsl: {
|
|
1938
|
+
h: 351.1764705882353,
|
|
1939
|
+
s: 0.7391304347826088,
|
|
1940
|
+
l: 0.7294117647058824
|
|
1941
|
+
},
|
|
1942
|
+
accent: !0
|
|
1943
|
+
},
|
|
1944
|
+
maroon: {
|
|
1945
|
+
name: "Maroon",
|
|
1946
|
+
order: 5,
|
|
1947
|
+
hex: "#ee99a0",
|
|
1948
|
+
rgb: {
|
|
1949
|
+
r: 238,
|
|
1950
|
+
g: 153,
|
|
1951
|
+
b: 160
|
|
1952
|
+
},
|
|
1953
|
+
hsl: {
|
|
1954
|
+
h: 355.05882352941177,
|
|
1955
|
+
s: 0.7142857142857143,
|
|
1956
|
+
l: 0.7666666666666666
|
|
1957
|
+
},
|
|
1958
|
+
accent: !0
|
|
1959
|
+
},
|
|
1960
|
+
peach: {
|
|
1961
|
+
name: "Peach",
|
|
1962
|
+
order: 6,
|
|
1963
|
+
hex: "#f5a97f",
|
|
1964
|
+
rgb: {
|
|
1965
|
+
r: 245,
|
|
1966
|
+
g: 169,
|
|
1967
|
+
b: 127
|
|
1968
|
+
},
|
|
1969
|
+
hsl: {
|
|
1970
|
+
h: 21.355932203389827,
|
|
1971
|
+
s: 0.8550724637681162,
|
|
1972
|
+
l: 0.7294117647058824
|
|
1973
|
+
},
|
|
1974
|
+
accent: !0
|
|
1975
|
+
},
|
|
1976
|
+
yellow: {
|
|
1977
|
+
name: "Yellow",
|
|
1978
|
+
order: 7,
|
|
1979
|
+
hex: "#eed49f",
|
|
1980
|
+
rgb: {
|
|
1981
|
+
r: 238,
|
|
1982
|
+
g: 212,
|
|
1983
|
+
b: 159
|
|
1984
|
+
},
|
|
1985
|
+
hsl: {
|
|
1986
|
+
h: 40.253164556962034,
|
|
1987
|
+
s: 0.6991150442477877,
|
|
1988
|
+
l: 0.7784313725490196
|
|
1989
|
+
},
|
|
1990
|
+
accent: !0
|
|
1991
|
+
},
|
|
1992
|
+
green: {
|
|
1993
|
+
name: "Green",
|
|
1994
|
+
order: 8,
|
|
1995
|
+
hex: "#a6da95",
|
|
1996
|
+
rgb: {
|
|
1997
|
+
r: 166,
|
|
1998
|
+
g: 218,
|
|
1999
|
+
b: 149
|
|
2000
|
+
},
|
|
2001
|
+
hsl: {
|
|
2002
|
+
h: 105.21739130434783,
|
|
2003
|
+
s: 0.4825174825174825,
|
|
2004
|
+
l: 0.7196078431372549
|
|
2005
|
+
},
|
|
2006
|
+
accent: !0
|
|
2007
|
+
},
|
|
2008
|
+
teal: {
|
|
2009
|
+
name: "Teal",
|
|
2010
|
+
order: 9,
|
|
2011
|
+
hex: "#8bd5ca",
|
|
2012
|
+
rgb: {
|
|
2013
|
+
r: 139,
|
|
2014
|
+
g: 213,
|
|
2015
|
+
b: 202
|
|
2016
|
+
},
|
|
2017
|
+
hsl: {
|
|
2018
|
+
h: 171.08108108108107,
|
|
2019
|
+
s: 0.46835443037974706,
|
|
2020
|
+
l: 0.6901960784313725
|
|
2021
|
+
},
|
|
2022
|
+
accent: !0
|
|
2023
|
+
},
|
|
2024
|
+
sky: {
|
|
2025
|
+
name: "Sky",
|
|
2026
|
+
order: 10,
|
|
2027
|
+
hex: "#91d7e3",
|
|
2028
|
+
rgb: {
|
|
2029
|
+
r: 145,
|
|
2030
|
+
g: 215,
|
|
2031
|
+
b: 227
|
|
2032
|
+
},
|
|
2033
|
+
hsl: {
|
|
2034
|
+
h: 188.78048780487802,
|
|
2035
|
+
s: 0.5942028985507245,
|
|
2036
|
+
l: 0.7294117647058823
|
|
2037
|
+
},
|
|
2038
|
+
accent: !0
|
|
2039
|
+
},
|
|
2040
|
+
sapphire: {
|
|
2041
|
+
name: "Sapphire",
|
|
2042
|
+
order: 11,
|
|
2043
|
+
hex: "#7dc4e4",
|
|
2044
|
+
rgb: {
|
|
2045
|
+
r: 125,
|
|
2046
|
+
g: 196,
|
|
2047
|
+
b: 228
|
|
2048
|
+
},
|
|
2049
|
+
hsl: {
|
|
2050
|
+
h: 198.64077669902912,
|
|
2051
|
+
s: 0.6560509554140128,
|
|
2052
|
+
l: 0.692156862745098
|
|
2053
|
+
},
|
|
2054
|
+
accent: !0
|
|
2055
|
+
},
|
|
2056
|
+
blue: {
|
|
2057
|
+
name: "Blue",
|
|
2058
|
+
order: 12,
|
|
2059
|
+
hex: "#8aadf4",
|
|
2060
|
+
rgb: {
|
|
2061
|
+
r: 138,
|
|
2062
|
+
g: 173,
|
|
2063
|
+
b: 244
|
|
2064
|
+
},
|
|
2065
|
+
hsl: {
|
|
2066
|
+
h: 220.188679245283,
|
|
2067
|
+
s: 0.8281250000000003,
|
|
2068
|
+
l: 0.7490196078431373
|
|
2069
|
+
},
|
|
2070
|
+
accent: !0
|
|
2071
|
+
},
|
|
2072
|
+
lavender: {
|
|
2073
|
+
name: "Lavender",
|
|
2074
|
+
order: 13,
|
|
2075
|
+
hex: "#b7bdf8",
|
|
2076
|
+
rgb: {
|
|
2077
|
+
r: 183,
|
|
2078
|
+
g: 189,
|
|
2079
|
+
b: 248
|
|
2080
|
+
},
|
|
2081
|
+
hsl: {
|
|
2082
|
+
h: 234.46153846153848,
|
|
2083
|
+
s: 0.8227848101265824,
|
|
2084
|
+
l: 0.8450980392156863
|
|
2085
|
+
},
|
|
2086
|
+
accent: !0
|
|
2087
|
+
},
|
|
2088
|
+
text: {
|
|
2089
|
+
name: "Text",
|
|
2090
|
+
order: 14,
|
|
2091
|
+
hex: "#cad3f5",
|
|
2092
|
+
rgb: {
|
|
2093
|
+
r: 202,
|
|
2094
|
+
g: 211,
|
|
2095
|
+
b: 245
|
|
2096
|
+
},
|
|
2097
|
+
hsl: {
|
|
2098
|
+
h: 227.4418604651163,
|
|
2099
|
+
s: 0.6825396825396831,
|
|
2100
|
+
l: 0.8764705882352941
|
|
2101
|
+
},
|
|
2102
|
+
accent: !1
|
|
2103
|
+
},
|
|
2104
|
+
subtext1: {
|
|
2105
|
+
name: "Subtext 1",
|
|
2106
|
+
order: 15,
|
|
2107
|
+
hex: "#b8c0e0",
|
|
2108
|
+
rgb: {
|
|
2109
|
+
r: 184,
|
|
2110
|
+
g: 192,
|
|
2111
|
+
b: 224
|
|
2112
|
+
},
|
|
2113
|
+
hsl: {
|
|
2114
|
+
h: 228,
|
|
2115
|
+
s: 0.39215686274509803,
|
|
2116
|
+
l: 0.8
|
|
2117
|
+
},
|
|
2118
|
+
accent: !1
|
|
2119
|
+
},
|
|
2120
|
+
subtext0: {
|
|
2121
|
+
name: "Subtext 0",
|
|
2122
|
+
order: 16,
|
|
2123
|
+
hex: "#a5adcb",
|
|
2124
|
+
rgb: {
|
|
2125
|
+
r: 165,
|
|
2126
|
+
g: 173,
|
|
2127
|
+
b: 203
|
|
2128
|
+
},
|
|
2129
|
+
hsl: {
|
|
2130
|
+
h: 227.36842105263156,
|
|
2131
|
+
s: 0.2676056338028167,
|
|
2132
|
+
l: 0.7215686274509804
|
|
2133
|
+
},
|
|
2134
|
+
accent: !1
|
|
2135
|
+
},
|
|
2136
|
+
overlay2: {
|
|
2137
|
+
name: "Overlay 2",
|
|
2138
|
+
order: 17,
|
|
2139
|
+
hex: "#939ab7",
|
|
2140
|
+
rgb: {
|
|
2141
|
+
r: 147,
|
|
2142
|
+
g: 154,
|
|
2143
|
+
b: 183
|
|
2144
|
+
},
|
|
2145
|
+
hsl: {
|
|
2146
|
+
h: 228.33333333333331,
|
|
2147
|
+
s: 0.2000000000000001,
|
|
2148
|
+
l: 0.6470588235294117
|
|
2149
|
+
},
|
|
2150
|
+
accent: !1
|
|
2151
|
+
},
|
|
2152
|
+
overlay1: {
|
|
2153
|
+
name: "Overlay 1",
|
|
2154
|
+
order: 18,
|
|
2155
|
+
hex: "#8087a2",
|
|
2156
|
+
rgb: {
|
|
2157
|
+
r: 128,
|
|
2158
|
+
g: 135,
|
|
2159
|
+
b: 162
|
|
2160
|
+
},
|
|
2161
|
+
hsl: {
|
|
2162
|
+
h: 227.6470588235294,
|
|
2163
|
+
s: 0.1545454545454545,
|
|
2164
|
+
l: 0.5686274509803921
|
|
2165
|
+
},
|
|
2166
|
+
accent: !1
|
|
2167
|
+
},
|
|
2168
|
+
overlay0: {
|
|
2169
|
+
name: "Overlay 0",
|
|
2170
|
+
order: 19,
|
|
2171
|
+
hex: "#6e738d",
|
|
2172
|
+
rgb: {
|
|
2173
|
+
r: 110,
|
|
2174
|
+
g: 115,
|
|
2175
|
+
b: 141
|
|
2176
|
+
},
|
|
2177
|
+
hsl: {
|
|
2178
|
+
h: 230.32258064516128,
|
|
2179
|
+
s: 0.12350597609561753,
|
|
2180
|
+
l: 0.49215686274509807
|
|
2181
|
+
},
|
|
2182
|
+
accent: !1
|
|
2183
|
+
},
|
|
2184
|
+
surface2: {
|
|
2185
|
+
name: "Surface 2",
|
|
2186
|
+
order: 20,
|
|
2187
|
+
hex: "#5b6078",
|
|
2188
|
+
rgb: {
|
|
2189
|
+
r: 91,
|
|
2190
|
+
g: 96,
|
|
2191
|
+
b: 120
|
|
2192
|
+
},
|
|
2193
|
+
hsl: {
|
|
2194
|
+
h: 229.65517241379308,
|
|
2195
|
+
s: 0.13744075829383887,
|
|
2196
|
+
l: 0.4137254901960784
|
|
2197
|
+
},
|
|
2198
|
+
accent: !1
|
|
2199
|
+
},
|
|
2200
|
+
surface1: {
|
|
2201
|
+
name: "Surface 1",
|
|
2202
|
+
order: 21,
|
|
2203
|
+
hex: "#494d64",
|
|
2204
|
+
rgb: {
|
|
2205
|
+
r: 73,
|
|
2206
|
+
g: 77,
|
|
2207
|
+
b: 100
|
|
2208
|
+
},
|
|
2209
|
+
hsl: {
|
|
2210
|
+
h: 231.11111111111114,
|
|
2211
|
+
s: 0.15606936416184972,
|
|
2212
|
+
l: 0.3392156862745098
|
|
2213
|
+
},
|
|
2214
|
+
accent: !1
|
|
2215
|
+
},
|
|
2216
|
+
surface0: {
|
|
2217
|
+
name: "Surface 0",
|
|
2218
|
+
order: 22,
|
|
2219
|
+
hex: "#363a4f",
|
|
2220
|
+
rgb: {
|
|
2221
|
+
r: 54,
|
|
2222
|
+
g: 58,
|
|
2223
|
+
b: 79
|
|
2224
|
+
},
|
|
2225
|
+
hsl: {
|
|
2226
|
+
h: 230.4,
|
|
2227
|
+
s: 0.1879699248120301,
|
|
2228
|
+
l: 0.2607843137254902
|
|
2229
|
+
},
|
|
2230
|
+
accent: !1
|
|
2231
|
+
},
|
|
2232
|
+
base: {
|
|
2233
|
+
name: "Base",
|
|
2234
|
+
order: 23,
|
|
2235
|
+
hex: "#24273a",
|
|
2236
|
+
rgb: {
|
|
2237
|
+
r: 36,
|
|
2238
|
+
g: 39,
|
|
2239
|
+
b: 58
|
|
2240
|
+
},
|
|
2241
|
+
hsl: {
|
|
2242
|
+
h: 231.8181818181818,
|
|
2243
|
+
s: 0.23404255319148934,
|
|
2244
|
+
l: 0.1843137254901961
|
|
2245
|
+
},
|
|
2246
|
+
accent: !1
|
|
2247
|
+
},
|
|
2248
|
+
mantle: {
|
|
2249
|
+
name: "Mantle",
|
|
2250
|
+
order: 24,
|
|
2251
|
+
hex: "#1e2030",
|
|
2252
|
+
rgb: {
|
|
2253
|
+
r: 30,
|
|
2254
|
+
g: 32,
|
|
2255
|
+
b: 48
|
|
2256
|
+
},
|
|
2257
|
+
hsl: {
|
|
2258
|
+
h: 233.33333333333334,
|
|
2259
|
+
s: 0.23076923076923075,
|
|
2260
|
+
l: 0.15294117647058825
|
|
2261
|
+
},
|
|
2262
|
+
accent: !1
|
|
2263
|
+
},
|
|
2264
|
+
crust: {
|
|
2265
|
+
name: "Crust",
|
|
2266
|
+
order: 25,
|
|
2267
|
+
hex: "#181926",
|
|
2268
|
+
rgb: {
|
|
2269
|
+
r: 24,
|
|
2270
|
+
g: 25,
|
|
2271
|
+
b: 38
|
|
2272
|
+
},
|
|
2273
|
+
hsl: {
|
|
2274
|
+
h: 235.71428571428572,
|
|
2275
|
+
s: 0.22580645161290322,
|
|
2276
|
+
l: 0.12156862745098039
|
|
2277
|
+
},
|
|
2278
|
+
accent: !1
|
|
2279
|
+
}
|
|
2280
|
+
},
|
|
2281
|
+
ansiColors: {
|
|
2282
|
+
black: {
|
|
2283
|
+
name: "Black",
|
|
2284
|
+
order: 0,
|
|
2285
|
+
normal: {
|
|
2286
|
+
name: "Black",
|
|
2287
|
+
hex: "#494d64",
|
|
2288
|
+
rgb: {
|
|
2289
|
+
r: 73,
|
|
2290
|
+
g: 77,
|
|
2291
|
+
b: 100
|
|
2292
|
+
},
|
|
2293
|
+
hsl: {
|
|
2294
|
+
h: 231.11111111111114,
|
|
2295
|
+
s: 0.15606936416184972,
|
|
2296
|
+
l: 0.3392156862745098
|
|
2297
|
+
},
|
|
2298
|
+
code: 0
|
|
2299
|
+
},
|
|
2300
|
+
bright: {
|
|
2301
|
+
name: "Bright Black",
|
|
2302
|
+
hex: "#5b6078",
|
|
2303
|
+
rgb: {
|
|
2304
|
+
r: 91,
|
|
2305
|
+
g: 96,
|
|
2306
|
+
b: 120
|
|
2307
|
+
},
|
|
2308
|
+
hsl: {
|
|
2309
|
+
h: 229.65517241379308,
|
|
2310
|
+
s: 0.13744075829383887,
|
|
2311
|
+
l: 0.4137254901960784
|
|
2312
|
+
},
|
|
2313
|
+
code: 8
|
|
2314
|
+
}
|
|
2315
|
+
},
|
|
2316
|
+
red: {
|
|
2317
|
+
name: "Red",
|
|
2318
|
+
order: 1,
|
|
2319
|
+
normal: {
|
|
2320
|
+
name: "Red",
|
|
2321
|
+
hex: "#ed8796",
|
|
2322
|
+
rgb: {
|
|
2323
|
+
r: 237,
|
|
2324
|
+
g: 135,
|
|
2325
|
+
b: 150
|
|
2326
|
+
},
|
|
2327
|
+
hsl: {
|
|
2328
|
+
h: 351.1764705882353,
|
|
2329
|
+
s: 0.7391304347826088,
|
|
2330
|
+
l: 0.7294117647058824
|
|
2331
|
+
},
|
|
2332
|
+
code: 1
|
|
2333
|
+
},
|
|
2334
|
+
bright: {
|
|
2335
|
+
name: "Bright Red",
|
|
2336
|
+
hex: "#ec7486",
|
|
2337
|
+
rgb: {
|
|
2338
|
+
r: 236,
|
|
2339
|
+
g: 116,
|
|
2340
|
+
b: 134
|
|
2341
|
+
},
|
|
2342
|
+
hsl: {
|
|
2343
|
+
h: 351,
|
|
2344
|
+
s: 0.759493670886076,
|
|
2345
|
+
l: 0.6901960784313725
|
|
2346
|
+
},
|
|
2347
|
+
code: 9
|
|
2348
|
+
}
|
|
2349
|
+
},
|
|
2350
|
+
green: {
|
|
2351
|
+
name: "Green",
|
|
2352
|
+
order: 2,
|
|
2353
|
+
normal: {
|
|
2354
|
+
name: "Green",
|
|
2355
|
+
hex: "#a6da95",
|
|
2356
|
+
rgb: {
|
|
2357
|
+
r: 166,
|
|
2358
|
+
g: 218,
|
|
2359
|
+
b: 149
|
|
2360
|
+
},
|
|
2361
|
+
hsl: {
|
|
2362
|
+
h: 105.21739130434783,
|
|
2363
|
+
s: 0.4825174825174825,
|
|
2364
|
+
l: 0.7196078431372549
|
|
2365
|
+
},
|
|
2366
|
+
code: 2
|
|
2367
|
+
},
|
|
2368
|
+
bright: {
|
|
2369
|
+
name: "Bright Green",
|
|
2370
|
+
hex: "#8ccf7f",
|
|
2371
|
+
rgb: {
|
|
2372
|
+
r: 140,
|
|
2373
|
+
g: 207,
|
|
2374
|
+
b: 127
|
|
2375
|
+
},
|
|
2376
|
+
hsl: {
|
|
2377
|
+
h: 110.24999999999999,
|
|
2378
|
+
s: 0.45454545454545453,
|
|
2379
|
+
l: 0.6549019607843137
|
|
2380
|
+
},
|
|
2381
|
+
code: 10
|
|
2382
|
+
}
|
|
2383
|
+
},
|
|
2384
|
+
yellow: {
|
|
2385
|
+
name: "Yellow",
|
|
2386
|
+
order: 3,
|
|
2387
|
+
normal: {
|
|
2388
|
+
name: "Yellow",
|
|
2389
|
+
hex: "#eed49f",
|
|
2390
|
+
rgb: {
|
|
2391
|
+
r: 238,
|
|
2392
|
+
g: 212,
|
|
2393
|
+
b: 159
|
|
2394
|
+
},
|
|
2395
|
+
hsl: {
|
|
2396
|
+
h: 40.253164556962034,
|
|
2397
|
+
s: 0.6991150442477877,
|
|
2398
|
+
l: 0.7784313725490196
|
|
2399
|
+
},
|
|
2400
|
+
code: 3
|
|
2401
|
+
},
|
|
2402
|
+
bright: {
|
|
2403
|
+
name: "Bright Yellow",
|
|
2404
|
+
hex: "#e1c682",
|
|
2405
|
+
rgb: {
|
|
2406
|
+
r: 225,
|
|
2407
|
+
g: 198,
|
|
2408
|
+
b: 130
|
|
2409
|
+
},
|
|
2410
|
+
hsl: {
|
|
2411
|
+
h: 42.94736842105264,
|
|
2412
|
+
s: 0.6129032258064515,
|
|
2413
|
+
l: 0.696078431372549
|
|
2414
|
+
},
|
|
2415
|
+
code: 11
|
|
2416
|
+
}
|
|
2417
|
+
},
|
|
2418
|
+
blue: {
|
|
2419
|
+
name: "Blue",
|
|
2420
|
+
order: 4,
|
|
2421
|
+
normal: {
|
|
2422
|
+
name: "Blue",
|
|
2423
|
+
hex: "#8aadf4",
|
|
2424
|
+
rgb: {
|
|
2425
|
+
r: 138,
|
|
2426
|
+
g: 173,
|
|
2427
|
+
b: 244
|
|
2428
|
+
},
|
|
2429
|
+
hsl: {
|
|
2430
|
+
h: 220.188679245283,
|
|
2431
|
+
s: 0.8281250000000003,
|
|
2432
|
+
l: 0.7490196078431373
|
|
2433
|
+
},
|
|
2434
|
+
code: 4
|
|
2435
|
+
},
|
|
2436
|
+
bright: {
|
|
2437
|
+
name: "Bright Blue",
|
|
2438
|
+
hex: "#78a1f6",
|
|
2439
|
+
rgb: {
|
|
2440
|
+
r: 120,
|
|
2441
|
+
g: 161,
|
|
2442
|
+
b: 246
|
|
2443
|
+
},
|
|
2444
|
+
hsl: {
|
|
2445
|
+
h: 220.47619047619048,
|
|
2446
|
+
s: 0.8750000000000002,
|
|
2447
|
+
l: 0.7176470588235294
|
|
2448
|
+
},
|
|
2449
|
+
code: 12
|
|
2450
|
+
}
|
|
2451
|
+
},
|
|
2452
|
+
magenta: {
|
|
2453
|
+
name: "Magenta",
|
|
2454
|
+
order: 5,
|
|
2455
|
+
normal: {
|
|
2456
|
+
name: "Magenta",
|
|
2457
|
+
hex: "#f5bde6",
|
|
2458
|
+
rgb: {
|
|
2459
|
+
r: 245,
|
|
2460
|
+
g: 189,
|
|
2461
|
+
b: 230
|
|
2462
|
+
},
|
|
2463
|
+
hsl: {
|
|
2464
|
+
h: 316.0714285714286,
|
|
2465
|
+
s: 0.7368421052631583,
|
|
2466
|
+
l: 0.8509803921568628
|
|
2467
|
+
},
|
|
2468
|
+
code: 5
|
|
2469
|
+
},
|
|
2470
|
+
bright: {
|
|
2471
|
+
name: "Bright Magenta",
|
|
2472
|
+
hex: "#f2a9dd",
|
|
2473
|
+
rgb: {
|
|
2474
|
+
r: 242,
|
|
2475
|
+
g: 169,
|
|
2476
|
+
b: 221
|
|
2477
|
+
},
|
|
2478
|
+
hsl: {
|
|
2479
|
+
h: 317.26027397260276,
|
|
2480
|
+
s: 0.7373737373737372,
|
|
2481
|
+
l: 0.8058823529411765
|
|
2482
|
+
},
|
|
2483
|
+
code: 13
|
|
2484
|
+
}
|
|
2485
|
+
},
|
|
2486
|
+
cyan: {
|
|
2487
|
+
name: "Cyan",
|
|
2488
|
+
order: 6,
|
|
2489
|
+
normal: {
|
|
2490
|
+
name: "Cyan",
|
|
2491
|
+
hex: "#8bd5ca",
|
|
2492
|
+
rgb: {
|
|
2493
|
+
r: 139,
|
|
2494
|
+
g: 213,
|
|
2495
|
+
b: 202
|
|
2496
|
+
},
|
|
2497
|
+
hsl: {
|
|
2498
|
+
h: 171.08108108108107,
|
|
2499
|
+
s: 0.46835443037974706,
|
|
2500
|
+
l: 0.6901960784313725
|
|
2501
|
+
},
|
|
2502
|
+
code: 6
|
|
2503
|
+
},
|
|
2504
|
+
bright: {
|
|
2505
|
+
name: "Bright Cyan",
|
|
2506
|
+
hex: "#63cbc0",
|
|
2507
|
+
rgb: {
|
|
2508
|
+
r: 99,
|
|
2509
|
+
g: 203,
|
|
2510
|
+
b: 192
|
|
2511
|
+
},
|
|
2512
|
+
hsl: {
|
|
2513
|
+
h: 173.65384615384616,
|
|
2514
|
+
s: 0.4999999999999998,
|
|
2515
|
+
l: 0.592156862745098
|
|
2516
|
+
},
|
|
2517
|
+
code: 14
|
|
2518
|
+
}
|
|
2519
|
+
},
|
|
2520
|
+
white: {
|
|
2521
|
+
name: "White",
|
|
2522
|
+
order: 7,
|
|
2523
|
+
normal: {
|
|
2524
|
+
name: "White",
|
|
2525
|
+
hex: "#a5adcb",
|
|
2526
|
+
rgb: {
|
|
2527
|
+
r: 165,
|
|
2528
|
+
g: 173,
|
|
2529
|
+
b: 203
|
|
2530
|
+
},
|
|
2531
|
+
hsl: {
|
|
2532
|
+
h: 227.36842105263156,
|
|
2533
|
+
s: 0.2676056338028167,
|
|
2534
|
+
l: 0.7215686274509804
|
|
2535
|
+
},
|
|
2536
|
+
code: 7
|
|
2537
|
+
},
|
|
2538
|
+
bright: {
|
|
2539
|
+
name: "Bright White",
|
|
2540
|
+
hex: "#b8c0e0",
|
|
2541
|
+
rgb: {
|
|
2542
|
+
r: 184,
|
|
2543
|
+
g: 192,
|
|
2544
|
+
b: 224
|
|
2545
|
+
},
|
|
2546
|
+
hsl: {
|
|
2547
|
+
h: 228,
|
|
2548
|
+
s: 0.39215686274509803,
|
|
2549
|
+
l: 0.8
|
|
2550
|
+
},
|
|
2551
|
+
code: 15
|
|
2552
|
+
}
|
|
2553
|
+
}
|
|
2554
|
+
}
|
|
2555
|
+
},
|
|
2556
|
+
mocha: {
|
|
2557
|
+
name: "Mocha",
|
|
2558
|
+
emoji: "🌿",
|
|
2559
|
+
order: 3,
|
|
2560
|
+
dark: !0,
|
|
2561
|
+
colors: {
|
|
2562
|
+
rosewater: {
|
|
2563
|
+
name: "Rosewater",
|
|
2564
|
+
order: 0,
|
|
2565
|
+
hex: "#f5e0dc",
|
|
2566
|
+
rgb: {
|
|
2567
|
+
r: 245,
|
|
2568
|
+
g: 224,
|
|
2569
|
+
b: 220
|
|
2570
|
+
},
|
|
2571
|
+
hsl: {
|
|
2572
|
+
h: 9.599999999999968,
|
|
2573
|
+
s: 0.555555555555556,
|
|
2574
|
+
l: 0.911764705882353
|
|
2575
|
+
},
|
|
2576
|
+
accent: !0
|
|
2577
|
+
},
|
|
2578
|
+
flamingo: {
|
|
2579
|
+
name: "Flamingo",
|
|
2580
|
+
order: 1,
|
|
2581
|
+
hex: "#f2cdcd",
|
|
2582
|
+
rgb: {
|
|
2583
|
+
r: 242,
|
|
2584
|
+
g: 205,
|
|
2585
|
+
b: 205
|
|
2586
|
+
},
|
|
2587
|
+
hsl: {
|
|
2588
|
+
h: 0,
|
|
2589
|
+
s: 0.587301587301587,
|
|
2590
|
+
l: 0.8764705882352941
|
|
2591
|
+
},
|
|
2592
|
+
accent: !0
|
|
2593
|
+
},
|
|
2594
|
+
pink: {
|
|
2595
|
+
name: "Pink",
|
|
2596
|
+
order: 2,
|
|
2597
|
+
hex: "#f5c2e7",
|
|
2598
|
+
rgb: {
|
|
2599
|
+
r: 245,
|
|
2600
|
+
g: 194,
|
|
2601
|
+
b: 231
|
|
2602
|
+
},
|
|
2603
|
+
hsl: {
|
|
2604
|
+
h: 316.4705882352941,
|
|
2605
|
+
s: 0.7183098591549301,
|
|
2606
|
+
l: 0.8607843137254902
|
|
2607
|
+
},
|
|
2608
|
+
accent: !0
|
|
2609
|
+
},
|
|
2610
|
+
mauve: {
|
|
2611
|
+
name: "Mauve",
|
|
2612
|
+
order: 3,
|
|
2613
|
+
hex: "#cba6f7",
|
|
2614
|
+
rgb: {
|
|
2615
|
+
r: 203,
|
|
2616
|
+
g: 166,
|
|
2617
|
+
b: 247
|
|
2618
|
+
},
|
|
2619
|
+
hsl: {
|
|
2620
|
+
h: 267.4074074074074,
|
|
2621
|
+
s: 0.8350515463917528,
|
|
2622
|
+
l: 0.8098039215686275
|
|
2623
|
+
},
|
|
2624
|
+
accent: !0
|
|
2625
|
+
},
|
|
2626
|
+
red: {
|
|
2627
|
+
name: "Red",
|
|
2628
|
+
order: 4,
|
|
2629
|
+
hex: "#f38ba8",
|
|
2630
|
+
rgb: {
|
|
2631
|
+
r: 243,
|
|
2632
|
+
g: 139,
|
|
2633
|
+
b: 168
|
|
2634
|
+
},
|
|
2635
|
+
hsl: {
|
|
2636
|
+
h: 343.2692307692308,
|
|
2637
|
+
s: 0.8124999999999998,
|
|
2638
|
+
l: 0.7490196078431373
|
|
2639
|
+
},
|
|
2640
|
+
accent: !0
|
|
2641
|
+
},
|
|
2642
|
+
maroon: {
|
|
2643
|
+
name: "Maroon",
|
|
2644
|
+
order: 5,
|
|
2645
|
+
hex: "#eba0ac",
|
|
2646
|
+
rgb: {
|
|
2647
|
+
r: 235,
|
|
2648
|
+
g: 160,
|
|
2649
|
+
b: 172
|
|
2650
|
+
},
|
|
2651
|
+
hsl: {
|
|
2652
|
+
h: 350.4,
|
|
2653
|
+
s: 0.6521739130434779,
|
|
2654
|
+
l: 0.7745098039215685
|
|
2655
|
+
},
|
|
2656
|
+
accent: !0
|
|
2657
|
+
},
|
|
2658
|
+
peach: {
|
|
2659
|
+
name: "Peach",
|
|
2660
|
+
order: 6,
|
|
2661
|
+
hex: "#fab387",
|
|
2662
|
+
rgb: {
|
|
2663
|
+
r: 250,
|
|
2664
|
+
g: 179,
|
|
2665
|
+
b: 135
|
|
2666
|
+
},
|
|
2667
|
+
hsl: {
|
|
2668
|
+
h: 22.95652173913043,
|
|
2669
|
+
s: 0.92,
|
|
2670
|
+
l: 0.7549019607843137
|
|
2671
|
+
},
|
|
2672
|
+
accent: !0
|
|
2673
|
+
},
|
|
2674
|
+
yellow: {
|
|
2675
|
+
name: "Yellow",
|
|
2676
|
+
order: 7,
|
|
2677
|
+
hex: "#f9e2af",
|
|
2678
|
+
rgb: {
|
|
2679
|
+
r: 249,
|
|
2680
|
+
g: 226,
|
|
2681
|
+
b: 175
|
|
2682
|
+
},
|
|
2683
|
+
hsl: {
|
|
2684
|
+
h: 41.35135135135135,
|
|
2685
|
+
s: 0.8604651162790699,
|
|
2686
|
+
l: 0.8313725490196078
|
|
2687
|
+
},
|
|
2688
|
+
accent: !0
|
|
2689
|
+
},
|
|
2690
|
+
green: {
|
|
2691
|
+
name: "Green",
|
|
2692
|
+
order: 8,
|
|
2693
|
+
hex: "#a6e3a1",
|
|
2694
|
+
rgb: {
|
|
2695
|
+
r: 166,
|
|
2696
|
+
g: 227,
|
|
2697
|
+
b: 161
|
|
2698
|
+
},
|
|
2699
|
+
hsl: {
|
|
2700
|
+
h: 115.45454545454544,
|
|
2701
|
+
s: 0.5409836065573769,
|
|
2702
|
+
l: 0.7607843137254902
|
|
2703
|
+
},
|
|
2704
|
+
accent: !0
|
|
2705
|
+
},
|
|
2706
|
+
teal: {
|
|
2707
|
+
name: "Teal",
|
|
2708
|
+
order: 9,
|
|
2709
|
+
hex: "#94e2d5",
|
|
2710
|
+
rgb: {
|
|
2711
|
+
r: 148,
|
|
2712
|
+
g: 226,
|
|
2713
|
+
b: 213
|
|
2714
|
+
},
|
|
2715
|
+
hsl: {
|
|
2716
|
+
h: 170.00000000000003,
|
|
2717
|
+
s: 0.5735294117647057,
|
|
2718
|
+
l: 0.7333333333333334
|
|
2719
|
+
},
|
|
2720
|
+
accent: !0
|
|
2721
|
+
},
|
|
2722
|
+
sky: {
|
|
2723
|
+
name: "Sky",
|
|
2724
|
+
order: 10,
|
|
2725
|
+
hex: "#89dceb",
|
|
2726
|
+
rgb: {
|
|
2727
|
+
r: 137,
|
|
2728
|
+
g: 220,
|
|
2729
|
+
b: 235
|
|
2730
|
+
},
|
|
2731
|
+
hsl: {
|
|
2732
|
+
h: 189.18367346938774,
|
|
2733
|
+
s: 0.7101449275362316,
|
|
2734
|
+
l: 0.7294117647058823
|
|
2735
|
+
},
|
|
2736
|
+
accent: !0
|
|
2737
|
+
},
|
|
2738
|
+
sapphire: {
|
|
2739
|
+
name: "Sapphire",
|
|
2740
|
+
order: 11,
|
|
2741
|
+
hex: "#74c7ec",
|
|
2742
|
+
rgb: {
|
|
2743
|
+
r: 116,
|
|
2744
|
+
g: 199,
|
|
2745
|
+
b: 236
|
|
2746
|
+
},
|
|
2747
|
+
hsl: {
|
|
2748
|
+
h: 198.5,
|
|
2749
|
+
s: 0.759493670886076,
|
|
2750
|
+
l: 0.6901960784313725
|
|
2751
|
+
},
|
|
2752
|
+
accent: !0
|
|
2753
|
+
},
|
|
2754
|
+
blue: {
|
|
2755
|
+
name: "Blue",
|
|
2756
|
+
order: 12,
|
|
2757
|
+
hex: "#89b4fa",
|
|
2758
|
+
rgb: {
|
|
2759
|
+
r: 137,
|
|
2760
|
+
g: 180,
|
|
2761
|
+
b: 250
|
|
2762
|
+
},
|
|
2763
|
+
hsl: {
|
|
2764
|
+
h: 217.1681415929203,
|
|
2765
|
+
s: 0.9186991869918699,
|
|
2766
|
+
l: 0.7588235294117647
|
|
2767
|
+
},
|
|
2768
|
+
accent: !0
|
|
2769
|
+
},
|
|
2770
|
+
lavender: {
|
|
2771
|
+
name: "Lavender",
|
|
2772
|
+
order: 13,
|
|
2773
|
+
hex: "#b4befe",
|
|
2774
|
+
rgb: {
|
|
2775
|
+
r: 180,
|
|
2776
|
+
g: 190,
|
|
2777
|
+
b: 254
|
|
2778
|
+
},
|
|
2779
|
+
hsl: {
|
|
2780
|
+
h: 231.89189189189187,
|
|
2781
|
+
s: 0.9736842105263159,
|
|
2782
|
+
l: 0.8509803921568628
|
|
2783
|
+
},
|
|
2784
|
+
accent: !0
|
|
2785
|
+
},
|
|
2786
|
+
text: {
|
|
2787
|
+
name: "Text",
|
|
2788
|
+
order: 14,
|
|
2789
|
+
hex: "#cdd6f4",
|
|
2790
|
+
rgb: {
|
|
2791
|
+
r: 205,
|
|
2792
|
+
g: 214,
|
|
2793
|
+
b: 244
|
|
2794
|
+
},
|
|
2795
|
+
hsl: {
|
|
2796
|
+
h: 226.15384615384616,
|
|
2797
|
+
s: 0.6393442622950825,
|
|
2798
|
+
l: 0.8803921568627451
|
|
2799
|
+
},
|
|
2800
|
+
accent: !1
|
|
2801
|
+
},
|
|
2802
|
+
subtext1: {
|
|
2803
|
+
name: "Subtext 1",
|
|
2804
|
+
order: 15,
|
|
2805
|
+
hex: "#bac2de",
|
|
2806
|
+
rgb: {
|
|
2807
|
+
r: 186,
|
|
2808
|
+
g: 194,
|
|
2809
|
+
b: 222
|
|
2810
|
+
},
|
|
2811
|
+
hsl: {
|
|
2812
|
+
h: 226.66666666666669,
|
|
2813
|
+
s: 0.35294117647058837,
|
|
2814
|
+
l: 0.8
|
|
2815
|
+
},
|
|
2816
|
+
accent: !1
|
|
2817
|
+
},
|
|
2818
|
+
subtext0: {
|
|
2819
|
+
name: "Subtext 0",
|
|
2820
|
+
order: 16,
|
|
2821
|
+
hex: "#a6adc8",
|
|
2822
|
+
rgb: {
|
|
2823
|
+
r: 166,
|
|
2824
|
+
g: 173,
|
|
2825
|
+
b: 200
|
|
2826
|
+
},
|
|
2827
|
+
hsl: {
|
|
2828
|
+
h: 227.6470588235294,
|
|
2829
|
+
s: 0.23611111111111102,
|
|
2830
|
+
l: 0.7176470588235294
|
|
2831
|
+
},
|
|
2832
|
+
accent: !1
|
|
2833
|
+
},
|
|
2834
|
+
overlay2: {
|
|
2835
|
+
name: "Overlay 2",
|
|
2836
|
+
order: 17,
|
|
2837
|
+
hex: "#9399b2",
|
|
2838
|
+
rgb: {
|
|
2839
|
+
r: 147,
|
|
2840
|
+
g: 153,
|
|
2841
|
+
b: 178
|
|
2842
|
+
},
|
|
2843
|
+
hsl: {
|
|
2844
|
+
h: 228.38709677419354,
|
|
2845
|
+
s: 0.16756756756756758,
|
|
2846
|
+
l: 0.6372549019607843
|
|
2847
|
+
},
|
|
2848
|
+
accent: !1
|
|
2849
|
+
},
|
|
2850
|
+
overlay1: {
|
|
2851
|
+
name: "Overlay 1",
|
|
2852
|
+
order: 18,
|
|
2853
|
+
hex: "#7f849c",
|
|
2854
|
+
rgb: {
|
|
2855
|
+
r: 127,
|
|
2856
|
+
g: 132,
|
|
2857
|
+
b: 156
|
|
2858
|
+
},
|
|
2859
|
+
hsl: {
|
|
2860
|
+
h: 229.65517241379308,
|
|
2861
|
+
s: 0.12775330396475776,
|
|
2862
|
+
l: 0.5549019607843138
|
|
2863
|
+
},
|
|
2864
|
+
accent: !1
|
|
2865
|
+
},
|
|
2866
|
+
overlay0: {
|
|
2867
|
+
name: "Overlay 0",
|
|
2868
|
+
order: 19,
|
|
2869
|
+
hex: "#6c7086",
|
|
2870
|
+
rgb: {
|
|
2871
|
+
r: 108,
|
|
2872
|
+
g: 112,
|
|
2873
|
+
b: 134
|
|
2874
|
+
},
|
|
2875
|
+
hsl: {
|
|
2876
|
+
h: 230.7692307692308,
|
|
2877
|
+
s: 0.10743801652892565,
|
|
2878
|
+
l: 0.4745098039215686
|
|
2879
|
+
},
|
|
2880
|
+
accent: !1
|
|
2881
|
+
},
|
|
2882
|
+
surface2: {
|
|
2883
|
+
name: "Surface 2",
|
|
2884
|
+
order: 20,
|
|
2885
|
+
hex: "#585b70",
|
|
2886
|
+
rgb: {
|
|
2887
|
+
r: 88,
|
|
2888
|
+
g: 91,
|
|
2889
|
+
b: 112
|
|
2890
|
+
},
|
|
2891
|
+
hsl: {
|
|
2892
|
+
h: 232.5,
|
|
2893
|
+
s: 0.12,
|
|
2894
|
+
l: 0.39215686274509803
|
|
2895
|
+
},
|
|
2896
|
+
accent: !1
|
|
2897
|
+
},
|
|
2898
|
+
surface1: {
|
|
2899
|
+
name: "Surface 1",
|
|
2900
|
+
order: 21,
|
|
2901
|
+
hex: "#45475a",
|
|
2902
|
+
rgb: {
|
|
2903
|
+
r: 69,
|
|
2904
|
+
g: 71,
|
|
2905
|
+
b: 90
|
|
2906
|
+
},
|
|
2907
|
+
hsl: {
|
|
2908
|
+
h: 234.2857142857143,
|
|
2909
|
+
s: 0.13207547169811326,
|
|
2910
|
+
l: 0.31176470588235294
|
|
2911
|
+
},
|
|
2912
|
+
accent: !1
|
|
2913
|
+
},
|
|
2914
|
+
surface0: {
|
|
2915
|
+
name: "Surface 0",
|
|
2916
|
+
order: 22,
|
|
2917
|
+
hex: "#313244",
|
|
2918
|
+
rgb: {
|
|
2919
|
+
r: 49,
|
|
2920
|
+
g: 50,
|
|
2921
|
+
b: 68
|
|
2922
|
+
},
|
|
2923
|
+
hsl: {
|
|
2924
|
+
h: 236.84210526315792,
|
|
2925
|
+
s: 0.16239316239316234,
|
|
2926
|
+
l: 0.22941176470588237
|
|
2927
|
+
},
|
|
2928
|
+
accent: !1
|
|
2929
|
+
},
|
|
2930
|
+
base: {
|
|
2931
|
+
name: "Base",
|
|
2932
|
+
order: 23,
|
|
2933
|
+
hex: "#1e1e2e",
|
|
2934
|
+
rgb: {
|
|
2935
|
+
r: 30,
|
|
2936
|
+
g: 30,
|
|
2937
|
+
b: 46
|
|
2938
|
+
},
|
|
2939
|
+
hsl: {
|
|
2940
|
+
h: 240,
|
|
2941
|
+
s: 0.21052631578947367,
|
|
2942
|
+
l: 0.14901960784313725
|
|
2943
|
+
},
|
|
2944
|
+
accent: !1
|
|
2945
|
+
},
|
|
2946
|
+
mantle: {
|
|
2947
|
+
name: "Mantle",
|
|
2948
|
+
order: 24,
|
|
2949
|
+
hex: "#181825",
|
|
2950
|
+
rgb: {
|
|
2951
|
+
r: 24,
|
|
2952
|
+
g: 24,
|
|
2953
|
+
b: 37
|
|
2954
|
+
},
|
|
2955
|
+
hsl: {
|
|
2956
|
+
h: 240,
|
|
2957
|
+
s: 0.2131147540983607,
|
|
2958
|
+
l: 0.11960784313725491
|
|
2959
|
+
},
|
|
2960
|
+
accent: !1
|
|
2961
|
+
},
|
|
2962
|
+
crust: {
|
|
2963
|
+
name: "Crust",
|
|
2964
|
+
order: 25,
|
|
2965
|
+
hex: "#11111b",
|
|
2966
|
+
rgb: {
|
|
2967
|
+
r: 17,
|
|
2968
|
+
g: 17,
|
|
2969
|
+
b: 27
|
|
2970
|
+
},
|
|
2971
|
+
hsl: {
|
|
2972
|
+
h: 240,
|
|
2973
|
+
s: 0.22727272727272727,
|
|
2974
|
+
l: 0.08627450980392157
|
|
2975
|
+
},
|
|
2976
|
+
accent: !1
|
|
2977
|
+
}
|
|
2978
|
+
},
|
|
2979
|
+
ansiColors: {
|
|
2980
|
+
black: {
|
|
2981
|
+
name: "Black",
|
|
2982
|
+
order: 0,
|
|
2983
|
+
normal: {
|
|
2984
|
+
name: "Black",
|
|
2985
|
+
hex: "#45475a",
|
|
2986
|
+
rgb: {
|
|
2987
|
+
r: 69,
|
|
2988
|
+
g: 71,
|
|
2989
|
+
b: 90
|
|
2990
|
+
},
|
|
2991
|
+
hsl: {
|
|
2992
|
+
h: 234.2857142857143,
|
|
2993
|
+
s: 0.13207547169811326,
|
|
2994
|
+
l: 0.31176470588235294
|
|
2995
|
+
},
|
|
2996
|
+
code: 0
|
|
2997
|
+
},
|
|
2998
|
+
bright: {
|
|
2999
|
+
name: "Bright Black",
|
|
3000
|
+
hex: "#585b70",
|
|
3001
|
+
rgb: {
|
|
3002
|
+
r: 88,
|
|
3003
|
+
g: 91,
|
|
3004
|
+
b: 112
|
|
3005
|
+
},
|
|
3006
|
+
hsl: {
|
|
3007
|
+
h: 232.5,
|
|
3008
|
+
s: 0.12,
|
|
3009
|
+
l: 0.39215686274509803
|
|
3010
|
+
},
|
|
3011
|
+
code: 8
|
|
3012
|
+
}
|
|
3013
|
+
},
|
|
3014
|
+
red: {
|
|
3015
|
+
name: "Red",
|
|
3016
|
+
order: 1,
|
|
3017
|
+
normal: {
|
|
3018
|
+
name: "Red",
|
|
3019
|
+
hex: "#f38ba8",
|
|
3020
|
+
rgb: {
|
|
3021
|
+
r: 243,
|
|
3022
|
+
g: 139,
|
|
3023
|
+
b: 168
|
|
3024
|
+
},
|
|
3025
|
+
hsl: {
|
|
3026
|
+
h: 343.2692307692308,
|
|
3027
|
+
s: 0.8124999999999998,
|
|
3028
|
+
l: 0.7490196078431373
|
|
3029
|
+
},
|
|
3030
|
+
code: 1
|
|
3031
|
+
},
|
|
3032
|
+
bright: {
|
|
3033
|
+
name: "Bright Red",
|
|
3034
|
+
hex: "#f37799",
|
|
3035
|
+
rgb: {
|
|
3036
|
+
r: 243,
|
|
3037
|
+
g: 119,
|
|
3038
|
+
b: 153
|
|
3039
|
+
},
|
|
3040
|
+
hsl: {
|
|
3041
|
+
h: 343.54838709677415,
|
|
3042
|
+
s: 0.8378378378378376,
|
|
3043
|
+
l: 0.7098039215686274
|
|
3044
|
+
},
|
|
3045
|
+
code: 9
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
green: {
|
|
3049
|
+
name: "Green",
|
|
3050
|
+
order: 2,
|
|
3051
|
+
normal: {
|
|
3052
|
+
name: "Green",
|
|
3053
|
+
hex: "#a6e3a1",
|
|
3054
|
+
rgb: {
|
|
3055
|
+
r: 166,
|
|
3056
|
+
g: 227,
|
|
3057
|
+
b: 161
|
|
3058
|
+
},
|
|
3059
|
+
hsl: {
|
|
3060
|
+
h: 115.45454545454544,
|
|
3061
|
+
s: 0.5409836065573769,
|
|
3062
|
+
l: 0.7607843137254902
|
|
3063
|
+
},
|
|
3064
|
+
code: 2
|
|
3065
|
+
},
|
|
3066
|
+
bright: {
|
|
3067
|
+
name: "Bright Green",
|
|
3068
|
+
hex: "#89d88b",
|
|
3069
|
+
rgb: {
|
|
3070
|
+
r: 137,
|
|
3071
|
+
g: 216,
|
|
3072
|
+
b: 139
|
|
3073
|
+
},
|
|
3074
|
+
hsl: {
|
|
3075
|
+
h: 121.51898734177213,
|
|
3076
|
+
s: 0.5031847133757963,
|
|
3077
|
+
l: 0.692156862745098
|
|
3078
|
+
},
|
|
3079
|
+
code: 10
|
|
3080
|
+
}
|
|
3081
|
+
},
|
|
3082
|
+
yellow: {
|
|
3083
|
+
name: "Yellow",
|
|
3084
|
+
order: 3,
|
|
3085
|
+
normal: {
|
|
3086
|
+
name: "Yellow",
|
|
3087
|
+
hex: "#f9e2af",
|
|
3088
|
+
rgb: {
|
|
3089
|
+
r: 249,
|
|
3090
|
+
g: 226,
|
|
3091
|
+
b: 175
|
|
3092
|
+
},
|
|
3093
|
+
hsl: {
|
|
3094
|
+
h: 41.35135135135135,
|
|
3095
|
+
s: 0.8604651162790699,
|
|
3096
|
+
l: 0.8313725490196078
|
|
3097
|
+
},
|
|
3098
|
+
code: 3
|
|
3099
|
+
},
|
|
3100
|
+
bright: {
|
|
3101
|
+
name: "Bright Yellow",
|
|
3102
|
+
hex: "#ebd391",
|
|
3103
|
+
rgb: {
|
|
3104
|
+
r: 235,
|
|
3105
|
+
g: 211,
|
|
3106
|
+
b: 145
|
|
3107
|
+
},
|
|
3108
|
+
hsl: {
|
|
3109
|
+
h: 44,
|
|
3110
|
+
s: 0.692307692307692,
|
|
3111
|
+
l: 0.7450980392156863
|
|
3112
|
+
},
|
|
3113
|
+
code: 11
|
|
3114
|
+
}
|
|
3115
|
+
},
|
|
3116
|
+
blue: {
|
|
3117
|
+
name: "Blue",
|
|
3118
|
+
order: 4,
|
|
3119
|
+
normal: {
|
|
3120
|
+
name: "Blue",
|
|
3121
|
+
hex: "#89b4fa",
|
|
3122
|
+
rgb: {
|
|
3123
|
+
r: 137,
|
|
3124
|
+
g: 180,
|
|
3125
|
+
b: 250
|
|
3126
|
+
},
|
|
3127
|
+
hsl: {
|
|
3128
|
+
h: 217.1681415929203,
|
|
3129
|
+
s: 0.9186991869918699,
|
|
3130
|
+
l: 0.7588235294117647
|
|
3131
|
+
},
|
|
3132
|
+
code: 4
|
|
3133
|
+
},
|
|
3134
|
+
bright: {
|
|
3135
|
+
name: "Bright Blue",
|
|
3136
|
+
hex: "#74a8fc",
|
|
3137
|
+
rgb: {
|
|
3138
|
+
r: 116,
|
|
3139
|
+
g: 168,
|
|
3140
|
+
b: 252
|
|
3141
|
+
},
|
|
3142
|
+
hsl: {
|
|
3143
|
+
h: 217.05882352941174,
|
|
3144
|
+
s: 0.9577464788732396,
|
|
3145
|
+
l: 0.7215686274509804
|
|
3146
|
+
},
|
|
3147
|
+
code: 12
|
|
3148
|
+
}
|
|
3149
|
+
},
|
|
3150
|
+
magenta: {
|
|
3151
|
+
name: "Magenta",
|
|
3152
|
+
order: 5,
|
|
3153
|
+
normal: {
|
|
3154
|
+
name: "Magenta",
|
|
3155
|
+
hex: "#f5c2e7",
|
|
3156
|
+
rgb: {
|
|
3157
|
+
r: 245,
|
|
3158
|
+
g: 194,
|
|
3159
|
+
b: 231
|
|
3160
|
+
},
|
|
3161
|
+
hsl: {
|
|
3162
|
+
h: 316.4705882352941,
|
|
3163
|
+
s: 0.7183098591549301,
|
|
3164
|
+
l: 0.8607843137254902
|
|
3165
|
+
},
|
|
3166
|
+
code: 5
|
|
3167
|
+
},
|
|
3168
|
+
bright: {
|
|
3169
|
+
name: "Bright Magenta",
|
|
3170
|
+
hex: "#f2aede",
|
|
3171
|
+
rgb: {
|
|
3172
|
+
r: 242,
|
|
3173
|
+
g: 174,
|
|
3174
|
+
b: 222
|
|
3175
|
+
},
|
|
3176
|
+
hsl: {
|
|
3177
|
+
h: 317.6470588235294,
|
|
3178
|
+
s: 0.7234042553191488,
|
|
3179
|
+
l: 0.8156862745098039
|
|
3180
|
+
},
|
|
3181
|
+
code: 13
|
|
3182
|
+
}
|
|
3183
|
+
},
|
|
3184
|
+
cyan: {
|
|
3185
|
+
name: "Cyan",
|
|
3186
|
+
order: 6,
|
|
3187
|
+
normal: {
|
|
3188
|
+
name: "Cyan",
|
|
3189
|
+
hex: "#94e2d5",
|
|
3190
|
+
rgb: {
|
|
3191
|
+
r: 148,
|
|
3192
|
+
g: 226,
|
|
3193
|
+
b: 213
|
|
3194
|
+
},
|
|
3195
|
+
hsl: {
|
|
3196
|
+
h: 170.00000000000003,
|
|
3197
|
+
s: 0.5735294117647057,
|
|
3198
|
+
l: 0.7333333333333334
|
|
3199
|
+
},
|
|
3200
|
+
code: 6
|
|
3201
|
+
},
|
|
3202
|
+
bright: {
|
|
3203
|
+
name: "Bright Cyan",
|
|
3204
|
+
hex: "#6bd7ca",
|
|
3205
|
+
rgb: {
|
|
3206
|
+
r: 107,
|
|
3207
|
+
g: 215,
|
|
3208
|
+
b: 202
|
|
3209
|
+
},
|
|
3210
|
+
hsl: {
|
|
3211
|
+
h: 172.77777777777777,
|
|
3212
|
+
s: 0.5744680851063831,
|
|
3213
|
+
l: 0.6313725490196078
|
|
3214
|
+
},
|
|
3215
|
+
code: 14
|
|
3216
|
+
}
|
|
3217
|
+
},
|
|
3218
|
+
white: {
|
|
3219
|
+
name: "White",
|
|
3220
|
+
order: 7,
|
|
3221
|
+
normal: {
|
|
3222
|
+
name: "White",
|
|
3223
|
+
hex: "#a6adc8",
|
|
3224
|
+
rgb: {
|
|
3225
|
+
r: 166,
|
|
3226
|
+
g: 173,
|
|
3227
|
+
b: 200
|
|
3228
|
+
},
|
|
3229
|
+
hsl: {
|
|
3230
|
+
h: 227.6470588235294,
|
|
3231
|
+
s: 0.23611111111111102,
|
|
3232
|
+
l: 0.7176470588235294
|
|
3233
|
+
},
|
|
3234
|
+
code: 7
|
|
3235
|
+
},
|
|
3236
|
+
bright: {
|
|
3237
|
+
name: "Bright White",
|
|
3238
|
+
hex: "#bac2de",
|
|
3239
|
+
rgb: {
|
|
3240
|
+
r: 186,
|
|
3241
|
+
g: 194,
|
|
3242
|
+
b: 222
|
|
3243
|
+
},
|
|
3244
|
+
hsl: {
|
|
3245
|
+
h: 226.66666666666669,
|
|
3246
|
+
s: 0.35294117647058837,
|
|
3247
|
+
l: 0.8
|
|
3248
|
+
},
|
|
3249
|
+
code: 15
|
|
3250
|
+
}
|
|
3251
|
+
}
|
|
3252
|
+
}
|
|
3253
|
+
}
|
|
3254
|
+
}, D = (t) => Object.entries(t), { version: sr, ...Te } = Ae, j = D(Te).reduce((t, [r, o]) => (t[r] = {
|
|
3255
|
+
...o,
|
|
3256
|
+
colorEntries: D(o.colors),
|
|
3257
|
+
ansiColorEntries: D(o.ansiColors)
|
|
3258
|
+
}, t), {});
|
|
3259
|
+
D(j);
|
|
3260
|
+
const k = ({ variant: t, settings: r, styles: o }) => {
|
|
3261
|
+
const n = K.theme({
|
|
3262
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
3263
|
+
"&": {
|
|
3264
|
+
backgroundColor: r.background,
|
|
3265
|
+
color: r.foreground
|
|
3266
|
+
},
|
|
3267
|
+
".cm-content": {
|
|
3268
|
+
caretColor: r.caret
|
|
3269
|
+
},
|
|
3270
|
+
".cm-cursor, .cm-dropCursor": {
|
|
3271
|
+
borderLeftColor: r.caret
|
|
3272
|
+
},
|
|
3273
|
+
"&.cm-focused .cm-selectionBackgroundm .cm-selectionBackground, .cm-content ::selection": {
|
|
3274
|
+
backgroundColor: r.selection
|
|
3275
|
+
},
|
|
3276
|
+
".cm-activeLine": {
|
|
3277
|
+
backgroundColor: r.lineHighlight
|
|
3278
|
+
},
|
|
3279
|
+
".cm-gutters": {
|
|
3280
|
+
backgroundColor: r.gutterBackground,
|
|
3281
|
+
color: r.gutterForeground
|
|
3282
|
+
},
|
|
3283
|
+
".cm-activeLineGutter": {
|
|
3284
|
+
backgroundColor: r.lineHighlight
|
|
3285
|
+
}
|
|
3286
|
+
}, {
|
|
3287
|
+
dark: t === "dark"
|
|
3288
|
+
}), s = oe.define(o);
|
|
3289
|
+
return [n, ne(s)];
|
|
3290
|
+
};
|
|
3291
|
+
k({
|
|
3292
|
+
variant: "dark",
|
|
3293
|
+
settings: {
|
|
3294
|
+
background: "#200020",
|
|
3295
|
+
foreground: "#D0D0FF",
|
|
3296
|
+
caret: "#7070FF",
|
|
3297
|
+
selection: "#80000080",
|
|
3298
|
+
gutterBackground: "#200020",
|
|
3299
|
+
gutterForeground: "#C080C0",
|
|
3300
|
+
lineHighlight: "#80000040"
|
|
3301
|
+
},
|
|
3302
|
+
styles: [
|
|
3303
|
+
{
|
|
3304
|
+
tag: e.comment,
|
|
3305
|
+
color: "#404080"
|
|
3306
|
+
},
|
|
3307
|
+
{
|
|
3308
|
+
tag: [e.string, e.regexp],
|
|
3309
|
+
color: "#999999"
|
|
3310
|
+
},
|
|
3311
|
+
{
|
|
3312
|
+
tag: e.number,
|
|
3313
|
+
color: "#7090B0"
|
|
3314
|
+
},
|
|
3315
|
+
{
|
|
3316
|
+
tag: [e.bool, e.null],
|
|
3317
|
+
color: "#8080A0"
|
|
3318
|
+
},
|
|
3319
|
+
{
|
|
3320
|
+
tag: [e.punctuation, e.derefOperator],
|
|
3321
|
+
color: "#805080"
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
tag: e.keyword,
|
|
3325
|
+
color: "#60B0FF"
|
|
3326
|
+
},
|
|
3327
|
+
{
|
|
3328
|
+
tag: e.definitionKeyword,
|
|
3329
|
+
color: "#B0FFF0"
|
|
3330
|
+
},
|
|
3331
|
+
{
|
|
3332
|
+
tag: e.moduleKeyword,
|
|
3333
|
+
color: "#60B0FF"
|
|
3334
|
+
},
|
|
3335
|
+
{
|
|
3336
|
+
tag: e.operator,
|
|
3337
|
+
color: "#A0A0FF"
|
|
3338
|
+
},
|
|
3339
|
+
{
|
|
3340
|
+
tag: [e.variableName, e.self],
|
|
3341
|
+
color: "#008080"
|
|
3342
|
+
},
|
|
3343
|
+
{
|
|
3344
|
+
tag: e.operatorKeyword,
|
|
3345
|
+
color: "#A0A0FF"
|
|
3346
|
+
},
|
|
3347
|
+
{
|
|
3348
|
+
tag: e.controlKeyword,
|
|
3349
|
+
color: "#80A0FF"
|
|
3350
|
+
},
|
|
3351
|
+
{
|
|
3352
|
+
tag: e.className,
|
|
3353
|
+
color: "#70E080"
|
|
3354
|
+
},
|
|
3355
|
+
{
|
|
3356
|
+
tag: [e.function(e.propertyName), e.propertyName],
|
|
3357
|
+
color: "#50A0A0"
|
|
3358
|
+
},
|
|
3359
|
+
{
|
|
3360
|
+
tag: e.tagName,
|
|
3361
|
+
color: "#009090"
|
|
3362
|
+
},
|
|
3363
|
+
{
|
|
3364
|
+
tag: e.modifier,
|
|
3365
|
+
color: "#B0FFF0"
|
|
3366
|
+
},
|
|
3367
|
+
{
|
|
3368
|
+
tag: [e.squareBracket, e.attributeName],
|
|
3369
|
+
color: "#D0D0FF"
|
|
3370
|
+
}
|
|
3371
|
+
]
|
|
3372
|
+
});
|
|
3373
|
+
k({
|
|
3374
|
+
variant: "light",
|
|
3375
|
+
settings: {
|
|
3376
|
+
background: "#fcfcfc",
|
|
3377
|
+
foreground: "#5c6166",
|
|
3378
|
+
caret: "#ffaa33",
|
|
3379
|
+
selection: "#036dd626",
|
|
3380
|
+
gutterBackground: "#fcfcfc",
|
|
3381
|
+
gutterForeground: "#8a919966",
|
|
3382
|
+
lineHighlight: "#8a91991a"
|
|
3383
|
+
},
|
|
3384
|
+
styles: [
|
|
3385
|
+
{
|
|
3386
|
+
tag: e.comment,
|
|
3387
|
+
color: "#787b8099"
|
|
3388
|
+
},
|
|
3389
|
+
{
|
|
3390
|
+
tag: e.string,
|
|
3391
|
+
color: "#86b300"
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
tag: e.regexp,
|
|
3395
|
+
color: "#4cbf99"
|
|
3396
|
+
},
|
|
3397
|
+
{
|
|
3398
|
+
tag: [e.number, e.bool, e.null],
|
|
3399
|
+
color: "#ffaa33"
|
|
3400
|
+
},
|
|
3401
|
+
{
|
|
3402
|
+
tag: e.variableName,
|
|
3403
|
+
color: "#5c6166"
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
tag: [e.definitionKeyword, e.modifier],
|
|
3407
|
+
color: "#fa8d3e"
|
|
3408
|
+
},
|
|
3409
|
+
{
|
|
3410
|
+
tag: [e.keyword, e.special(e.brace)],
|
|
3411
|
+
color: "#fa8d3e"
|
|
3412
|
+
},
|
|
3413
|
+
{
|
|
3414
|
+
tag: e.operator,
|
|
3415
|
+
color: "#ed9366"
|
|
3416
|
+
},
|
|
3417
|
+
{
|
|
3418
|
+
tag: e.separator,
|
|
3419
|
+
color: "#5c6166b3"
|
|
3420
|
+
},
|
|
3421
|
+
{
|
|
3422
|
+
tag: e.punctuation,
|
|
3423
|
+
color: "#5c6166"
|
|
3424
|
+
},
|
|
3425
|
+
{
|
|
3426
|
+
tag: [e.definition(e.propertyName), e.function(e.variableName)],
|
|
3427
|
+
color: "#f2ae49"
|
|
3428
|
+
},
|
|
3429
|
+
{
|
|
3430
|
+
tag: [e.className, e.definition(e.typeName)],
|
|
3431
|
+
color: "#22a4e6"
|
|
3432
|
+
},
|
|
3433
|
+
{
|
|
3434
|
+
tag: [e.tagName, e.typeName, e.self, e.labelName],
|
|
3435
|
+
color: "#55b4d4"
|
|
3436
|
+
},
|
|
3437
|
+
{
|
|
3438
|
+
tag: e.angleBracket,
|
|
3439
|
+
color: "#55b4d480"
|
|
3440
|
+
},
|
|
3441
|
+
{
|
|
3442
|
+
tag: e.attributeName,
|
|
3443
|
+
color: "#f2ae49"
|
|
3444
|
+
}
|
|
3445
|
+
]
|
|
3446
|
+
});
|
|
3447
|
+
k({
|
|
3448
|
+
variant: "dark",
|
|
3449
|
+
settings: {
|
|
3450
|
+
background: "#15191EFA",
|
|
3451
|
+
foreground: "#EEF2F7",
|
|
3452
|
+
caret: "#C4C4C4",
|
|
3453
|
+
selection: "#90B2D557",
|
|
3454
|
+
gutterBackground: "#15191EFA",
|
|
3455
|
+
gutterForeground: "#aaaaaa95",
|
|
3456
|
+
lineHighlight: "#57575712"
|
|
3457
|
+
},
|
|
3458
|
+
styles: [
|
|
3459
|
+
{
|
|
3460
|
+
tag: e.comment,
|
|
3461
|
+
color: "#6E6E6E"
|
|
3462
|
+
},
|
|
3463
|
+
{
|
|
3464
|
+
tag: [e.string, e.regexp, e.special(e.brace)],
|
|
3465
|
+
color: "#5C81B3"
|
|
3466
|
+
},
|
|
3467
|
+
{
|
|
3468
|
+
tag: e.number,
|
|
3469
|
+
color: "#C1E1B8"
|
|
3470
|
+
},
|
|
3471
|
+
{
|
|
3472
|
+
tag: e.bool,
|
|
3473
|
+
color: "#53667D"
|
|
3474
|
+
},
|
|
3475
|
+
{
|
|
3476
|
+
tag: [e.definitionKeyword, e.modifier, e.function(e.propertyName)],
|
|
3477
|
+
color: "#A3D295",
|
|
3478
|
+
fontWeight: "bold"
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
tag: [e.keyword, e.moduleKeyword, e.operatorKeyword, e.operator],
|
|
3482
|
+
color: "#697A8E",
|
|
3483
|
+
fontWeight: "bold"
|
|
3484
|
+
},
|
|
3485
|
+
{
|
|
3486
|
+
tag: [e.variableName, e.attributeName],
|
|
3487
|
+
color: "#708E67"
|
|
3488
|
+
},
|
|
3489
|
+
{
|
|
3490
|
+
tag: [
|
|
3491
|
+
e.function(e.variableName),
|
|
3492
|
+
e.definition(e.propertyName),
|
|
3493
|
+
e.derefOperator
|
|
3494
|
+
],
|
|
3495
|
+
color: "#fff"
|
|
3496
|
+
},
|
|
3497
|
+
{
|
|
3498
|
+
tag: e.tagName,
|
|
3499
|
+
color: "#A3D295"
|
|
3500
|
+
}
|
|
3501
|
+
]
|
|
3502
|
+
});
|
|
3503
|
+
k({
|
|
3504
|
+
variant: "dark",
|
|
3505
|
+
settings: {
|
|
3506
|
+
background: "#2e241d",
|
|
3507
|
+
foreground: "#BAAE9E",
|
|
3508
|
+
caret: "#A7A7A7",
|
|
3509
|
+
selection: "#DDF0FF33",
|
|
3510
|
+
gutterBackground: "#28211C",
|
|
3511
|
+
gutterForeground: "#BAAE9E90",
|
|
3512
|
+
lineHighlight: "#FFFFFF08"
|
|
3513
|
+
},
|
|
3514
|
+
styles: [
|
|
3515
|
+
{
|
|
3516
|
+
tag: e.comment,
|
|
3517
|
+
color: "#666666"
|
|
3518
|
+
},
|
|
3519
|
+
{
|
|
3520
|
+
tag: [e.string, e.special(e.brace)],
|
|
3521
|
+
color: "#54BE0D"
|
|
3522
|
+
},
|
|
3523
|
+
{
|
|
3524
|
+
tag: e.regexp,
|
|
3525
|
+
color: "#E9C062"
|
|
3526
|
+
},
|
|
3527
|
+
{
|
|
3528
|
+
tag: e.number,
|
|
3529
|
+
color: "#CF6A4C"
|
|
3530
|
+
},
|
|
3531
|
+
{
|
|
3532
|
+
tag: [e.keyword, e.operator],
|
|
3533
|
+
color: "#5EA6EA"
|
|
3534
|
+
},
|
|
3535
|
+
{
|
|
3536
|
+
tag: e.variableName,
|
|
3537
|
+
color: "#7587A6"
|
|
3538
|
+
},
|
|
3539
|
+
{
|
|
3540
|
+
tag: [e.definitionKeyword, e.modifier],
|
|
3541
|
+
color: "#F9EE98"
|
|
3542
|
+
},
|
|
3543
|
+
{
|
|
3544
|
+
tag: [e.propertyName, e.function(e.variableName)],
|
|
3545
|
+
color: "#937121"
|
|
3546
|
+
},
|
|
3547
|
+
{
|
|
3548
|
+
tag: [e.typeName, e.angleBracket, e.tagName],
|
|
3549
|
+
color: "#9B859D"
|
|
3550
|
+
}
|
|
3551
|
+
]
|
|
3552
|
+
});
|
|
3553
|
+
k({
|
|
3554
|
+
variant: "dark",
|
|
3555
|
+
settings: {
|
|
3556
|
+
background: "#3b2627",
|
|
3557
|
+
foreground: "#E6E1C4",
|
|
3558
|
+
caret: "#E6E1C4",
|
|
3559
|
+
selection: "#16120E",
|
|
3560
|
+
gutterBackground: "#3b2627",
|
|
3561
|
+
gutterForeground: "#E6E1C490",
|
|
3562
|
+
lineHighlight: "#1F1611"
|
|
3563
|
+
},
|
|
3564
|
+
styles: [
|
|
3565
|
+
{
|
|
3566
|
+
tag: e.comment,
|
|
3567
|
+
color: "#6B4E32"
|
|
3568
|
+
},
|
|
3569
|
+
{
|
|
3570
|
+
tag: [e.keyword, e.operator, e.derefOperator],
|
|
3571
|
+
color: "#EF5D32"
|
|
3572
|
+
},
|
|
3573
|
+
{
|
|
3574
|
+
tag: e.className,
|
|
3575
|
+
color: "#EFAC32",
|
|
3576
|
+
fontWeight: "bold"
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
tag: [
|
|
3580
|
+
e.typeName,
|
|
3581
|
+
e.propertyName,
|
|
3582
|
+
e.function(e.variableName),
|
|
3583
|
+
e.definition(e.variableName)
|
|
3584
|
+
],
|
|
3585
|
+
color: "#EFAC32"
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
tag: e.definition(e.typeName),
|
|
3589
|
+
color: "#EFAC32",
|
|
3590
|
+
fontWeight: "bold"
|
|
3591
|
+
},
|
|
3592
|
+
{
|
|
3593
|
+
tag: e.labelName,
|
|
3594
|
+
color: "#EFAC32",
|
|
3595
|
+
fontWeight: "bold"
|
|
3596
|
+
},
|
|
3597
|
+
{
|
|
3598
|
+
tag: [e.number, e.bool],
|
|
3599
|
+
color: "#6C99BB"
|
|
3600
|
+
},
|
|
3601
|
+
{
|
|
3602
|
+
tag: [e.variableName, e.self],
|
|
3603
|
+
color: "#7DAF9C"
|
|
3604
|
+
},
|
|
3605
|
+
{
|
|
3606
|
+
tag: [e.string, e.special(e.brace), e.regexp],
|
|
3607
|
+
color: "#D9D762"
|
|
3608
|
+
},
|
|
3609
|
+
{
|
|
3610
|
+
tag: [e.angleBracket, e.tagName, e.attributeName],
|
|
3611
|
+
color: "#EFCB43"
|
|
3612
|
+
}
|
|
3613
|
+
]
|
|
3614
|
+
});
|
|
3615
|
+
k({
|
|
3616
|
+
variant: "dark",
|
|
3617
|
+
settings: {
|
|
3618
|
+
background: "#000205",
|
|
3619
|
+
foreground: "#FFFFFF",
|
|
3620
|
+
caret: "#E60065",
|
|
3621
|
+
selection: "#E60C6559",
|
|
3622
|
+
gutterBackground: "#000205",
|
|
3623
|
+
gutterForeground: "#ffffff90",
|
|
3624
|
+
lineHighlight: "#4DD7FC1A"
|
|
3625
|
+
},
|
|
3626
|
+
styles: [
|
|
3627
|
+
{
|
|
3628
|
+
tag: e.comment,
|
|
3629
|
+
color: "#404040"
|
|
3630
|
+
},
|
|
3631
|
+
{
|
|
3632
|
+
tag: [e.string, e.special(e.brace), e.regexp],
|
|
3633
|
+
color: "#00D8FF"
|
|
3634
|
+
},
|
|
3635
|
+
{
|
|
3636
|
+
tag: e.number,
|
|
3637
|
+
color: "#E62286"
|
|
3638
|
+
},
|
|
3639
|
+
{
|
|
3640
|
+
tag: [e.variableName, e.attributeName, e.self],
|
|
3641
|
+
color: "#E62286",
|
|
3642
|
+
fontWeight: "bold"
|
|
3643
|
+
},
|
|
3644
|
+
{
|
|
3645
|
+
tag: e.function(e.variableName),
|
|
3646
|
+
color: "#fff",
|
|
3647
|
+
fontWeight: "bold"
|
|
3648
|
+
}
|
|
3649
|
+
]
|
|
3650
|
+
});
|
|
3651
|
+
k({
|
|
3652
|
+
variant: "light",
|
|
3653
|
+
settings: {
|
|
3654
|
+
background: "#fff",
|
|
3655
|
+
foreground: "#000",
|
|
3656
|
+
caret: "#000",
|
|
3657
|
+
selection: "#BDD5FC",
|
|
3658
|
+
gutterBackground: "#fff",
|
|
3659
|
+
gutterForeground: "#00000070",
|
|
3660
|
+
lineHighlight: "#FFFBD1"
|
|
3661
|
+
},
|
|
3662
|
+
styles: [
|
|
3663
|
+
{
|
|
3664
|
+
tag: e.comment,
|
|
3665
|
+
color: "#BCC8BA"
|
|
3666
|
+
},
|
|
3667
|
+
{
|
|
3668
|
+
tag: [e.string, e.special(e.brace), e.regexp],
|
|
3669
|
+
color: "#5D90CD"
|
|
3670
|
+
},
|
|
3671
|
+
{
|
|
3672
|
+
tag: [e.number, e.bool, e.null],
|
|
3673
|
+
color: "#46A609"
|
|
3674
|
+
},
|
|
3675
|
+
{
|
|
3676
|
+
tag: e.keyword,
|
|
3677
|
+
color: "#AF956F"
|
|
3678
|
+
},
|
|
3679
|
+
{
|
|
3680
|
+
tag: [e.definitionKeyword, e.modifier],
|
|
3681
|
+
color: "#C52727"
|
|
3682
|
+
},
|
|
3683
|
+
{
|
|
3684
|
+
tag: [e.angleBracket, e.tagName, e.attributeName],
|
|
3685
|
+
color: "#606060"
|
|
3686
|
+
},
|
|
3687
|
+
{
|
|
3688
|
+
tag: e.self,
|
|
3689
|
+
color: "#000"
|
|
3690
|
+
}
|
|
3691
|
+
]
|
|
3692
|
+
});
|
|
3693
|
+
k({
|
|
3694
|
+
variant: "dark",
|
|
3695
|
+
settings: {
|
|
3696
|
+
background: "#00254b",
|
|
3697
|
+
foreground: "#FFFFFF",
|
|
3698
|
+
caret: "#FFFFFF",
|
|
3699
|
+
selection: "#B36539BF",
|
|
3700
|
+
gutterBackground: "#00254b",
|
|
3701
|
+
gutterForeground: "#FFFFFF70",
|
|
3702
|
+
lineHighlight: "#00000059"
|
|
3703
|
+
},
|
|
3704
|
+
styles: [
|
|
3705
|
+
{
|
|
3706
|
+
tag: e.comment,
|
|
3707
|
+
color: "#0088FF"
|
|
3708
|
+
},
|
|
3709
|
+
{
|
|
3710
|
+
tag: e.string,
|
|
3711
|
+
color: "#3AD900"
|
|
3712
|
+
},
|
|
3713
|
+
{
|
|
3714
|
+
tag: e.regexp,
|
|
3715
|
+
color: "#80FFC2"
|
|
3716
|
+
},
|
|
3717
|
+
{
|
|
3718
|
+
tag: [e.number, e.bool, e.null],
|
|
3719
|
+
color: "#FF628C"
|
|
3720
|
+
},
|
|
3721
|
+
{
|
|
3722
|
+
tag: [e.definitionKeyword, e.modifier],
|
|
3723
|
+
color: "#FFEE80"
|
|
3724
|
+
},
|
|
3725
|
+
{
|
|
3726
|
+
tag: e.variableName,
|
|
3727
|
+
color: "#CCCCCC"
|
|
3728
|
+
},
|
|
3729
|
+
{
|
|
3730
|
+
tag: e.self,
|
|
3731
|
+
color: "#FF80E1"
|
|
3732
|
+
},
|
|
3733
|
+
{
|
|
3734
|
+
tag: [
|
|
3735
|
+
e.className,
|
|
3736
|
+
e.definition(e.propertyName),
|
|
3737
|
+
e.function(e.variableName),
|
|
3738
|
+
e.definition(e.typeName),
|
|
3739
|
+
e.labelName
|
|
3740
|
+
],
|
|
3741
|
+
color: "#FFDD00"
|
|
3742
|
+
},
|
|
3743
|
+
{
|
|
3744
|
+
tag: [e.keyword, e.operator],
|
|
3745
|
+
color: "#FF9D00"
|
|
3746
|
+
},
|
|
3747
|
+
{
|
|
3748
|
+
tag: [e.propertyName, e.typeName],
|
|
3749
|
+
color: "#80FFBB"
|
|
3750
|
+
},
|
|
3751
|
+
{
|
|
3752
|
+
tag: e.special(e.brace),
|
|
3753
|
+
color: "#EDEF7D"
|
|
3754
|
+
},
|
|
3755
|
+
{
|
|
3756
|
+
tag: e.attributeName,
|
|
3757
|
+
color: "#9EFFFF"
|
|
3758
|
+
},
|
|
3759
|
+
{
|
|
3760
|
+
tag: e.derefOperator,
|
|
3761
|
+
color: "#fff"
|
|
3762
|
+
}
|
|
3763
|
+
]
|
|
3764
|
+
});
|
|
3765
|
+
k({
|
|
3766
|
+
variant: "dark",
|
|
3767
|
+
settings: {
|
|
3768
|
+
background: "#060521",
|
|
3769
|
+
foreground: "#E0E0E0",
|
|
3770
|
+
caret: "#FFFFFFA6",
|
|
3771
|
+
selection: "#122BBB",
|
|
3772
|
+
gutterBackground: "#060521",
|
|
3773
|
+
gutterForeground: "#E0E0E090",
|
|
3774
|
+
lineHighlight: "#FFFFFF0F"
|
|
3775
|
+
},
|
|
3776
|
+
styles: [
|
|
3777
|
+
{
|
|
3778
|
+
tag: e.comment,
|
|
3779
|
+
color: "#AEAEAE"
|
|
3780
|
+
},
|
|
3781
|
+
{
|
|
3782
|
+
tag: [e.string, e.special(e.brace), e.regexp],
|
|
3783
|
+
color: "#8DFF8E"
|
|
3784
|
+
},
|
|
3785
|
+
{
|
|
3786
|
+
tag: [
|
|
3787
|
+
e.className,
|
|
3788
|
+
e.definition(e.propertyName),
|
|
3789
|
+
e.function(e.variableName),
|
|
3790
|
+
e.function(e.definition(e.variableName)),
|
|
3791
|
+
e.definition(e.typeName)
|
|
3792
|
+
],
|
|
3793
|
+
color: "#A3EBFF"
|
|
3794
|
+
},
|
|
3795
|
+
{
|
|
3796
|
+
tag: [e.number, e.bool, e.null],
|
|
3797
|
+
color: "#62E9BD"
|
|
3798
|
+
},
|
|
3799
|
+
{
|
|
3800
|
+
tag: [e.keyword, e.operator],
|
|
3801
|
+
color: "#2BF1DC"
|
|
3802
|
+
},
|
|
3803
|
+
{
|
|
3804
|
+
tag: [e.definitionKeyword, e.modifier],
|
|
3805
|
+
color: "#F8FBB1"
|
|
3806
|
+
},
|
|
3807
|
+
{
|
|
3808
|
+
tag: [e.variableName, e.self],
|
|
3809
|
+
color: "#B683CA"
|
|
3810
|
+
},
|
|
3811
|
+
{
|
|
3812
|
+
tag: [e.angleBracket, e.tagName, e.typeName, e.propertyName],
|
|
3813
|
+
color: "#60A4F1"
|
|
3814
|
+
},
|
|
3815
|
+
{
|
|
3816
|
+
tag: e.derefOperator,
|
|
3817
|
+
color: "#E0E0E0"
|
|
3818
|
+
},
|
|
3819
|
+
{
|
|
3820
|
+
tag: e.attributeName,
|
|
3821
|
+
color: "#7BACCA"
|
|
3822
|
+
}
|
|
3823
|
+
]
|
|
3824
|
+
});
|
|
3825
|
+
k({
|
|
3826
|
+
variant: "dark",
|
|
3827
|
+
settings: {
|
|
3828
|
+
background: "#2d2f3f",
|
|
3829
|
+
foreground: "#f8f8f2",
|
|
3830
|
+
caret: "#f8f8f0",
|
|
3831
|
+
selection: "#44475a",
|
|
3832
|
+
gutterBackground: "#282a36",
|
|
3833
|
+
gutterForeground: "rgb(144, 145, 148)",
|
|
3834
|
+
lineHighlight: "#44475a"
|
|
3835
|
+
},
|
|
3836
|
+
styles: [
|
|
3837
|
+
{
|
|
3838
|
+
tag: e.comment,
|
|
3839
|
+
color: "#6272a4"
|
|
3840
|
+
},
|
|
3841
|
+
{
|
|
3842
|
+
tag: [e.string, e.special(e.brace)],
|
|
3843
|
+
color: "#f1fa8c"
|
|
3844
|
+
},
|
|
3845
|
+
{
|
|
3846
|
+
tag: [e.number, e.self, e.bool, e.null],
|
|
3847
|
+
color: "#bd93f9"
|
|
3848
|
+
},
|
|
3849
|
+
{
|
|
3850
|
+
tag: [e.keyword, e.operator],
|
|
3851
|
+
color: "#ff79c6"
|
|
3852
|
+
},
|
|
3853
|
+
{
|
|
3854
|
+
tag: [e.definitionKeyword, e.typeName],
|
|
3855
|
+
color: "#8be9fd"
|
|
3856
|
+
},
|
|
3857
|
+
{
|
|
3858
|
+
tag: e.definition(e.typeName),
|
|
3859
|
+
color: "#f8f8f2"
|
|
3860
|
+
},
|
|
3861
|
+
{
|
|
3862
|
+
tag: [
|
|
3863
|
+
e.className,
|
|
3864
|
+
e.definition(e.propertyName),
|
|
3865
|
+
e.function(e.variableName),
|
|
3866
|
+
e.attributeName
|
|
3867
|
+
],
|
|
3868
|
+
color: "#50fa7b"
|
|
3869
|
+
}
|
|
3870
|
+
]
|
|
3871
|
+
});
|
|
3872
|
+
k({
|
|
3873
|
+
variant: "light",
|
|
3874
|
+
settings: {
|
|
3875
|
+
background: "#FFFFFF",
|
|
3876
|
+
foreground: "#000000",
|
|
3877
|
+
caret: "#000000",
|
|
3878
|
+
selection: "#80C7FF",
|
|
3879
|
+
gutterBackground: "#FFFFFF",
|
|
3880
|
+
gutterForeground: "#00000070",
|
|
3881
|
+
lineHighlight: "#C1E2F8"
|
|
3882
|
+
},
|
|
3883
|
+
styles: [
|
|
3884
|
+
{
|
|
3885
|
+
tag: e.comment,
|
|
3886
|
+
color: "#AAAAAA"
|
|
3887
|
+
},
|
|
3888
|
+
{
|
|
3889
|
+
tag: [e.keyword, e.operator, e.typeName, e.tagName, e.propertyName],
|
|
3890
|
+
color: "#2F6F9F",
|
|
3891
|
+
fontWeight: "bold"
|
|
3892
|
+
},
|
|
3893
|
+
{
|
|
3894
|
+
tag: [e.attributeName, e.definition(e.propertyName)],
|
|
3895
|
+
color: "#4F9FD0"
|
|
3896
|
+
},
|
|
3897
|
+
{
|
|
3898
|
+
tag: [e.className, e.string, e.special(e.brace)],
|
|
3899
|
+
color: "#CF4F5F"
|
|
3900
|
+
},
|
|
3901
|
+
{
|
|
3902
|
+
tag: e.number,
|
|
3903
|
+
color: "#CF4F5F",
|
|
3904
|
+
fontWeight: "bold"
|
|
3905
|
+
},
|
|
3906
|
+
{
|
|
3907
|
+
tag: e.variableName,
|
|
3908
|
+
fontWeight: "bold"
|
|
3909
|
+
}
|
|
3910
|
+
]
|
|
3911
|
+
});
|
|
3912
|
+
k({
|
|
3913
|
+
variant: "light",
|
|
3914
|
+
settings: {
|
|
3915
|
+
background: "#f2f1f8",
|
|
3916
|
+
foreground: "#0c006b",
|
|
3917
|
+
caret: "#5c49e9",
|
|
3918
|
+
selection: "#d5d1f2",
|
|
3919
|
+
gutterBackground: "#f2f1f8",
|
|
3920
|
+
gutterForeground: "#0c006b70",
|
|
3921
|
+
lineHighlight: "#e1def3"
|
|
3922
|
+
},
|
|
3923
|
+
styles: [
|
|
3924
|
+
{
|
|
3925
|
+
tag: e.comment,
|
|
3926
|
+
color: "#9995b7"
|
|
3927
|
+
},
|
|
3928
|
+
{
|
|
3929
|
+
tag: e.keyword,
|
|
3930
|
+
color: "#ff5792",
|
|
3931
|
+
fontWeight: "bold"
|
|
3932
|
+
},
|
|
3933
|
+
{
|
|
3934
|
+
tag: [e.definitionKeyword, e.modifier],
|
|
3935
|
+
color: "#ff5792"
|
|
3936
|
+
},
|
|
3937
|
+
{
|
|
3938
|
+
tag: [e.className, e.tagName, e.definition(e.typeName)],
|
|
3939
|
+
color: "#0094f0"
|
|
3940
|
+
},
|
|
3941
|
+
{
|
|
3942
|
+
tag: [e.number, e.bool, e.null, e.special(e.brace)],
|
|
3943
|
+
color: "#5842ff"
|
|
3944
|
+
},
|
|
3945
|
+
{
|
|
3946
|
+
tag: [e.definition(e.propertyName), e.function(e.variableName)],
|
|
3947
|
+
color: "#0095a8"
|
|
3948
|
+
},
|
|
3949
|
+
{
|
|
3950
|
+
tag: e.typeName,
|
|
3951
|
+
color: "#b3694d"
|
|
3952
|
+
},
|
|
3953
|
+
{
|
|
3954
|
+
tag: [e.propertyName, e.variableName],
|
|
3955
|
+
color: "#fa8900"
|
|
3956
|
+
},
|
|
3957
|
+
{
|
|
3958
|
+
tag: e.operator,
|
|
3959
|
+
color: "#ff5792"
|
|
3960
|
+
},
|
|
3961
|
+
{
|
|
3962
|
+
tag: e.self,
|
|
3963
|
+
color: "#e64100"
|
|
3964
|
+
},
|
|
3965
|
+
{
|
|
3966
|
+
tag: [e.string, e.regexp],
|
|
3967
|
+
color: "#00b368"
|
|
3968
|
+
},
|
|
3969
|
+
{
|
|
3970
|
+
tag: [e.paren, e.bracket],
|
|
3971
|
+
color: "#0431fa"
|
|
3972
|
+
},
|
|
3973
|
+
{
|
|
3974
|
+
tag: e.labelName,
|
|
3975
|
+
color: "#00bdd6"
|
|
3976
|
+
},
|
|
3977
|
+
{
|
|
3978
|
+
tag: e.attributeName,
|
|
3979
|
+
color: "#e64100"
|
|
3980
|
+
},
|
|
3981
|
+
{
|
|
3982
|
+
tag: e.angleBracket,
|
|
3983
|
+
color: "#9995b7"
|
|
3984
|
+
}
|
|
3985
|
+
]
|
|
3986
|
+
});
|
|
3987
|
+
k({
|
|
3988
|
+
variant: "light",
|
|
3989
|
+
settings: {
|
|
3990
|
+
background: "#faf4ed",
|
|
3991
|
+
foreground: "#575279",
|
|
3992
|
+
caret: "#575279",
|
|
3993
|
+
selection: "#6e6a8614",
|
|
3994
|
+
gutterBackground: "#faf4ed",
|
|
3995
|
+
gutterForeground: "#57527970",
|
|
3996
|
+
lineHighlight: "#6e6a860d"
|
|
3997
|
+
},
|
|
3998
|
+
styles: [
|
|
3999
|
+
{
|
|
4000
|
+
tag: e.comment,
|
|
4001
|
+
color: "#9893a5"
|
|
4002
|
+
},
|
|
4003
|
+
{
|
|
4004
|
+
tag: [e.bool, e.null],
|
|
4005
|
+
color: "#286983"
|
|
4006
|
+
},
|
|
4007
|
+
{
|
|
4008
|
+
tag: e.number,
|
|
4009
|
+
color: "#d7827e"
|
|
4010
|
+
},
|
|
4011
|
+
{
|
|
4012
|
+
tag: e.className,
|
|
4013
|
+
color: "#d7827e"
|
|
4014
|
+
},
|
|
4015
|
+
{
|
|
4016
|
+
tag: [e.angleBracket, e.tagName, e.typeName],
|
|
4017
|
+
color: "#56949f"
|
|
4018
|
+
},
|
|
4019
|
+
{
|
|
4020
|
+
tag: e.attributeName,
|
|
4021
|
+
color: "#907aa9"
|
|
4022
|
+
},
|
|
4023
|
+
{
|
|
4024
|
+
tag: e.punctuation,
|
|
4025
|
+
color: "#797593"
|
|
4026
|
+
},
|
|
4027
|
+
{
|
|
4028
|
+
tag: [e.keyword, e.modifier],
|
|
4029
|
+
color: "#286983"
|
|
4030
|
+
},
|
|
4031
|
+
{
|
|
4032
|
+
tag: [e.string, e.regexp],
|
|
4033
|
+
color: "#ea9d34"
|
|
4034
|
+
},
|
|
4035
|
+
{
|
|
4036
|
+
tag: e.variableName,
|
|
4037
|
+
color: "#d7827e"
|
|
4038
|
+
}
|
|
4039
|
+
]
|
|
4040
|
+
});
|
|
4041
|
+
k({
|
|
4042
|
+
variant: "light",
|
|
4043
|
+
settings: {
|
|
4044
|
+
background: "#FFFFFF",
|
|
4045
|
+
foreground: "#000000",
|
|
4046
|
+
caret: "#000000",
|
|
4047
|
+
selection: "#FFFD0054",
|
|
4048
|
+
gutterBackground: "#FFFFFF",
|
|
4049
|
+
gutterForeground: "#00000070",
|
|
4050
|
+
lineHighlight: "#00000008"
|
|
4051
|
+
},
|
|
4052
|
+
styles: [
|
|
4053
|
+
{
|
|
4054
|
+
tag: e.comment,
|
|
4055
|
+
color: "#CFCFCF"
|
|
4056
|
+
},
|
|
4057
|
+
{
|
|
4058
|
+
tag: [e.number, e.bool, e.null],
|
|
4059
|
+
color: "#E66C29"
|
|
4060
|
+
},
|
|
4061
|
+
{
|
|
4062
|
+
tag: [
|
|
4063
|
+
e.className,
|
|
4064
|
+
e.definition(e.propertyName),
|
|
4065
|
+
e.function(e.variableName),
|
|
4066
|
+
e.labelName,
|
|
4067
|
+
e.definition(e.typeName)
|
|
4068
|
+
],
|
|
4069
|
+
color: "#2EB43B"
|
|
4070
|
+
},
|
|
4071
|
+
{
|
|
4072
|
+
tag: e.keyword,
|
|
4073
|
+
color: "#D8B229"
|
|
4074
|
+
},
|
|
4075
|
+
{
|
|
4076
|
+
tag: e.operator,
|
|
4077
|
+
color: "#4EA44E",
|
|
4078
|
+
fontWeight: "bold"
|
|
4079
|
+
},
|
|
4080
|
+
{
|
|
4081
|
+
tag: [e.definitionKeyword, e.modifier],
|
|
4082
|
+
color: "#925A47"
|
|
4083
|
+
},
|
|
4084
|
+
{
|
|
4085
|
+
tag: e.string,
|
|
4086
|
+
color: "#704D3D"
|
|
4087
|
+
},
|
|
4088
|
+
{
|
|
4089
|
+
tag: e.typeName,
|
|
4090
|
+
color: "#2F8996"
|
|
4091
|
+
},
|
|
4092
|
+
{
|
|
4093
|
+
tag: [e.variableName, e.propertyName],
|
|
4094
|
+
color: "#77ACB0"
|
|
4095
|
+
},
|
|
4096
|
+
{
|
|
4097
|
+
tag: e.self,
|
|
4098
|
+
color: "#77ACB0",
|
|
4099
|
+
fontWeight: "bold"
|
|
4100
|
+
},
|
|
4101
|
+
{
|
|
4102
|
+
tag: e.regexp,
|
|
4103
|
+
color: "#E3965E"
|
|
4104
|
+
},
|
|
4105
|
+
{
|
|
4106
|
+
tag: [e.tagName, e.angleBracket],
|
|
4107
|
+
color: "#BAA827"
|
|
4108
|
+
},
|
|
4109
|
+
{
|
|
4110
|
+
tag: e.attributeName,
|
|
4111
|
+
color: "#B06520"
|
|
4112
|
+
},
|
|
4113
|
+
{
|
|
4114
|
+
tag: e.derefOperator,
|
|
4115
|
+
color: "#000"
|
|
4116
|
+
}
|
|
4117
|
+
]
|
|
4118
|
+
});
|
|
4119
|
+
k({
|
|
4120
|
+
variant: "light",
|
|
4121
|
+
settings: {
|
|
4122
|
+
background: "#fef7e5",
|
|
4123
|
+
foreground: "#586E75",
|
|
4124
|
+
caret: "#000000",
|
|
4125
|
+
selection: "#073642",
|
|
4126
|
+
gutterBackground: "#fef7e5",
|
|
4127
|
+
gutterForeground: "#586E7580",
|
|
4128
|
+
lineHighlight: "#EEE8D5"
|
|
4129
|
+
},
|
|
4130
|
+
styles: [
|
|
4131
|
+
{
|
|
4132
|
+
tag: e.comment,
|
|
4133
|
+
color: "#93A1A1"
|
|
4134
|
+
},
|
|
4135
|
+
{
|
|
4136
|
+
tag: e.string,
|
|
4137
|
+
color: "#2AA198"
|
|
4138
|
+
},
|
|
4139
|
+
{
|
|
4140
|
+
tag: e.regexp,
|
|
4141
|
+
color: "#D30102"
|
|
4142
|
+
},
|
|
4143
|
+
{
|
|
4144
|
+
tag: e.number,
|
|
4145
|
+
color: "#D33682"
|
|
4146
|
+
},
|
|
4147
|
+
{
|
|
4148
|
+
tag: e.variableName,
|
|
4149
|
+
color: "#268BD2"
|
|
4150
|
+
},
|
|
4151
|
+
{
|
|
4152
|
+
tag: [e.keyword, e.operator, e.punctuation],
|
|
4153
|
+
color: "#859900"
|
|
4154
|
+
},
|
|
4155
|
+
{
|
|
4156
|
+
tag: [e.definitionKeyword, e.modifier],
|
|
4157
|
+
color: "#073642",
|
|
4158
|
+
fontWeight: "bold"
|
|
4159
|
+
},
|
|
4160
|
+
{
|
|
4161
|
+
tag: [e.className, e.self, e.definition(e.propertyName)],
|
|
4162
|
+
color: "#268BD2"
|
|
4163
|
+
},
|
|
4164
|
+
{
|
|
4165
|
+
tag: e.function(e.variableName),
|
|
4166
|
+
color: "#268BD2"
|
|
4167
|
+
},
|
|
4168
|
+
{
|
|
4169
|
+
tag: [e.bool, e.null],
|
|
4170
|
+
color: "#B58900"
|
|
4171
|
+
},
|
|
4172
|
+
{
|
|
4173
|
+
tag: e.tagName,
|
|
4174
|
+
color: "#268BD2",
|
|
4175
|
+
fontWeight: "bold"
|
|
4176
|
+
},
|
|
4177
|
+
{
|
|
4178
|
+
tag: e.angleBracket,
|
|
4179
|
+
color: "#93A1A1"
|
|
4180
|
+
},
|
|
4181
|
+
{
|
|
4182
|
+
tag: e.attributeName,
|
|
4183
|
+
color: "#93A1A1"
|
|
4184
|
+
},
|
|
4185
|
+
{
|
|
4186
|
+
tag: e.typeName,
|
|
4187
|
+
color: "#859900"
|
|
4188
|
+
}
|
|
4189
|
+
]
|
|
4190
|
+
});
|
|
4191
|
+
k({
|
|
4192
|
+
variant: "light",
|
|
4193
|
+
settings: {
|
|
4194
|
+
background: "#FFFFFF",
|
|
4195
|
+
foreground: "#4D4D4C",
|
|
4196
|
+
caret: "#AEAFAD",
|
|
4197
|
+
selection: "#D6D6D6",
|
|
4198
|
+
gutterBackground: "#FFFFFF",
|
|
4199
|
+
gutterForeground: "#4D4D4C80",
|
|
4200
|
+
lineHighlight: "#EFEFEF"
|
|
4201
|
+
},
|
|
4202
|
+
styles: [
|
|
4203
|
+
{
|
|
4204
|
+
tag: e.comment,
|
|
4205
|
+
color: "#8E908C"
|
|
4206
|
+
},
|
|
4207
|
+
{
|
|
4208
|
+
tag: [e.variableName, e.self, e.propertyName, e.attributeName, e.regexp],
|
|
4209
|
+
color: "#C82829"
|
|
4210
|
+
},
|
|
4211
|
+
{
|
|
4212
|
+
tag: [e.number, e.bool, e.null],
|
|
4213
|
+
color: "#F5871F"
|
|
4214
|
+
},
|
|
4215
|
+
{
|
|
4216
|
+
tag: [e.className, e.typeName, e.definition(e.typeName)],
|
|
4217
|
+
color: "#C99E00"
|
|
4218
|
+
},
|
|
4219
|
+
{
|
|
4220
|
+
tag: [e.string, e.special(e.brace)],
|
|
4221
|
+
color: "#718C00"
|
|
4222
|
+
},
|
|
4223
|
+
{
|
|
4224
|
+
tag: e.operator,
|
|
4225
|
+
color: "#3E999F"
|
|
4226
|
+
},
|
|
4227
|
+
{
|
|
4228
|
+
tag: [e.definition(e.propertyName), e.function(e.variableName)],
|
|
4229
|
+
color: "#4271AE"
|
|
4230
|
+
},
|
|
4231
|
+
{
|
|
4232
|
+
tag: e.keyword,
|
|
4233
|
+
color: "#8959A8"
|
|
4234
|
+
},
|
|
4235
|
+
{
|
|
4236
|
+
tag: e.derefOperator,
|
|
4237
|
+
color: "#4D4D4C"
|
|
4238
|
+
}
|
|
4239
|
+
]
|
|
4240
|
+
});
|
|
4241
|
+
const Le = new le(), De = (t = "latte") => {
|
|
4242
|
+
const r = j[t].colors, o = r.base, n = t === "latte" ? "#484b64" : r.text.hex, s = Me(r.crust.rgb, o.rgb, 0.1);
|
|
4243
|
+
return [
|
|
4244
|
+
k({
|
|
4245
|
+
variant: t === "latte" ? "light" : "dark",
|
|
4246
|
+
settings: {
|
|
4247
|
+
background: o.hex,
|
|
4248
|
+
foreground: n,
|
|
4249
|
+
caret: r.rosewater.hex,
|
|
4250
|
+
// selection: selection,
|
|
4251
|
+
lineHighlight: q(r.overlay1.rgb, 0.1),
|
|
4252
|
+
gutterBackground: o.hex,
|
|
4253
|
+
gutterForeground: n
|
|
4254
|
+
},
|
|
4255
|
+
styles: [
|
|
4256
|
+
// python
|
|
4257
|
+
{ tag: e.modifier, color: r.mauve.hex },
|
|
4258
|
+
{ tag: e.controlKeyword, color: r.mauve.hex },
|
|
4259
|
+
{ tag: e.operatorKeyword, color: r.mauve.hex },
|
|
4260
|
+
{ tag: e.definitionKeyword, color: r.mauve.hex },
|
|
4261
|
+
{ tag: e.moduleKeyword, color: r.mauve.hex },
|
|
4262
|
+
{ tag: e.bool, color: r.peach.hex },
|
|
4263
|
+
{ tag: e.null, color: r.peach.hex },
|
|
4264
|
+
{ tag: e.null, color: r.peach.hex },
|
|
4265
|
+
{ tag: [e.function(e.variableName)], color: r.blue.hex },
|
|
4266
|
+
{ tag: [e.function(e.definition(e.variableName))], color: r.blue.hex },
|
|
4267
|
+
{ tag: [e.definition(e.className)], color: r.yellow.hex, fontWeight: "bold" },
|
|
4268
|
+
{ tag: e.propertyName, color: r.blue.hex },
|
|
4269
|
+
{ tag: [e.function(e.propertyName)], color: r.blue.hex },
|
|
4270
|
+
{ tag: e.lineComment, color: r.overlay2.hex },
|
|
4271
|
+
{ tag: e.number, color: r.peach.hex },
|
|
4272
|
+
{ tag: e.string, color: r.green.hex },
|
|
4273
|
+
{ tag: [e.special(e.string)], color: r.green.hex, fontWeight: "600" },
|
|
4274
|
+
{ tag: e.arithmeticOperator, color: r.sky.hex },
|
|
4275
|
+
{ tag: e.bitwiseOperator, color: r.sky.hex },
|
|
4276
|
+
{ tag: e.compareOperator, color: r.sky.hex },
|
|
4277
|
+
{ tag: e.definitionOperator, color: r.sky.hex },
|
|
4278
|
+
{ tag: e.punctuation, color: r.peach.hex },
|
|
4279
|
+
{ tag: e.meta, color: r.teal.hex },
|
|
4280
|
+
{ tag: e.paren, color: r.overlay2.hex },
|
|
4281
|
+
{ tag: e.squareBracket, color: r.overlay2.hex },
|
|
4282
|
+
{ tag: e.brace, color: r.overlay2.hex },
|
|
4283
|
+
{ tag: e.derefOperator, color: r.overlay2.hex },
|
|
4284
|
+
{ tag: e.separator, color: r.overlay2.hex },
|
|
4285
|
+
// c++
|
|
4286
|
+
{ tag: e.definitionKeyword, color: r.mauve.hex },
|
|
4287
|
+
{ tag: e.self, color: r.red.hex },
|
|
4288
|
+
{ tag: [e.standard(e.typeName)], color: r.yellow.hex },
|
|
4289
|
+
// (void, int, ...)
|
|
4290
|
+
{ tag: e.typeName, color: r.yellow.hex },
|
|
4291
|
+
// no necesary good
|
|
4292
|
+
{ tag: e.namespace, color: r.yellow.hex },
|
|
4293
|
+
// no necesary good
|
|
4294
|
+
{ tag: e.labelName, color: r.teal.hex },
|
|
4295
|
+
// no necesary good
|
|
4296
|
+
{ tag: e.variableName, color: n },
|
|
4297
|
+
// no necesary good
|
|
4298
|
+
{ tag: e.operator, color: r.sky.hex },
|
|
4299
|
+
{ tag: e.logicOperator, color: r.sky.hex },
|
|
4300
|
+
{ tag: e.updateOperator, color: r.sky.hex },
|
|
4301
|
+
// no necesary good
|
|
4302
|
+
{ tag: e.character, color: r.green.hex },
|
|
4303
|
+
{ tag: e.escape, color: r.pink.hex },
|
|
4304
|
+
{ tag: e.literal, color: r.sky.hex },
|
|
4305
|
+
{ tag: e.processingInstruction, color: r.mauve.hex },
|
|
4306
|
+
// { tag: [t.special(t.name)], color: colors.red.hex },
|
|
4307
|
+
{ tag: e.angleBracket, color: r.overlay2.hex },
|
|
4308
|
+
// css
|
|
4309
|
+
{ tag: e.keyword, color: r.yellow.hex },
|
|
4310
|
+
{ tag: e.tagName, color: r.blue.hex },
|
|
4311
|
+
{ tag: e.className, color: r.teal.hex },
|
|
4312
|
+
{ tag: [e.constant(e.className)], color: r.teal.hex },
|
|
4313
|
+
// no necesary good
|
|
4314
|
+
{ tag: e.attributeName, color: r.peach.hex },
|
|
4315
|
+
// no necesary good
|
|
4316
|
+
{ tag: e.atom, color: r.yellow.hex },
|
|
4317
|
+
// no necesary good
|
|
4318
|
+
{ tag: e.unit, color: r.yellow.hex },
|
|
4319
|
+
{ tag: e.color, color: r.pink.hex },
|
|
4320
|
+
// Rust
|
|
4321
|
+
{ tag: e.macroName, color: r.peach.hex }
|
|
4322
|
+
]
|
|
4323
|
+
}),
|
|
4324
|
+
K.theme({
|
|
4325
|
+
// Editor
|
|
4326
|
+
"& .cm-selectionBackground, ::selection": { background: `${q(r.overlay2.rgb, 0.3)} !important` },
|
|
4327
|
+
// Code
|
|
4328
|
+
"& .cb-content, & .ic": { backgroundColor: s },
|
|
4329
|
+
".cb-icon": { fill: n },
|
|
4330
|
+
".wg-codeblock-btn:hover": { backgroundColor: q(r.overlay1.rgb, 0.2) },
|
|
4331
|
+
// Blockquote
|
|
4332
|
+
".bq-none-mark": { "--bq-none-mark": n },
|
|
4333
|
+
".bq-note-mark": { "--bq-note-mark": r.blue.hex },
|
|
4334
|
+
".bq-tip-mark": { "--bq-tip-mark": r.green.hex },
|
|
4335
|
+
".bq-warning-mark": { "--bq-warning-mark": r.peach.hex },
|
|
4336
|
+
".bq-important-mark": { "--bq-important-mark": r.mauve.hex },
|
|
4337
|
+
".bq-caution-mark": { "--bq-caution-mark": r.red.hex },
|
|
4338
|
+
// Links
|
|
4339
|
+
"& a.url": { color: r.blue.hex },
|
|
4340
|
+
"& a.url:visited": { color: r.mauve.hex }
|
|
4341
|
+
}, { dark: t !== "latte" })
|
|
4342
|
+
];
|
|
4343
|
+
}, Me = (t, r, o) => {
|
|
4344
|
+
const n = [t.r, t.g, t.b], s = [r.r, r.g, r.b];
|
|
4345
|
+
return `rgba(${ge(n, s, o, 0.3).join(", ")})`;
|
|
4346
|
+
}, q = (t, r) => `rgba(${t.r}, ${t.g}, ${t.b}, ${r})`;
|
|
4347
|
+
function Se(t, r) {
|
|
4348
|
+
const o = ["Document", "ListItem", "BulletList", "OrderedList"], n = {
|
|
4349
|
+
none: "bq-none-mark",
|
|
4350
|
+
note: "bq-note-mark",
|
|
4351
|
+
tip: "bq-tip-mark",
|
|
4352
|
+
warning: "bq-warning-mark",
|
|
4353
|
+
important: "bq-important-mark",
|
|
4354
|
+
caution: "bq-caution-mark"
|
|
4355
|
+
}, s = {
|
|
4356
|
+
QuoteMark: (a, c, i) => {
|
|
4357
|
+
const d = ["qt-mk"];
|
|
4358
|
+
return i in n ? d.push(n[i]) : d.push(n.none), h.mark({
|
|
4359
|
+
class: d.join(" ")
|
|
4360
|
+
}).range(a, c);
|
|
4361
|
+
},
|
|
4362
|
+
BlockquoteLine: (a, c) => h.line({ class: "bq-line " + (c ? "sw" : "") }).range(a),
|
|
4363
|
+
quoteLine: (a, c, i) => {
|
|
4364
|
+
const d = `calc(100% - ${Math.max(0, i) + 1.2}ch)`;
|
|
4365
|
+
return h.mark({
|
|
4366
|
+
class: "bq-text-line",
|
|
4367
|
+
attributes: { style: `width: ${d}` }
|
|
4368
|
+
}).range(a, c);
|
|
4369
|
+
}
|
|
4370
|
+
}, g = (a, c, i, d) => {
|
|
4371
|
+
const b = [], { from: y, to: f } = c, u = i.number, F = (w, x) => {
|
|
4372
|
+
let p = 0;
|
|
4373
|
+
const N = [];
|
|
4374
|
+
let T = 0;
|
|
4375
|
+
return {
|
|
4376
|
+
enter({ name: A, node: $, from: O, to: R }) {
|
|
4377
|
+
A === "Blockquote" && N.push(qe(a, $)), A === "QuoteMark" && (b.push(s[A](O, R, N[p])), T = R, p++);
|
|
4378
|
+
},
|
|
4379
|
+
leave({ name: A, from: $, to: O }) {
|
|
4380
|
+
A === "Paragraph" && T < x && b.push(s.quoteLine(T, x, T - w));
|
|
4381
|
+
}
|
|
4382
|
+
};
|
|
4383
|
+
};
|
|
4384
|
+
for (let w = u; w < d + u; w++) {
|
|
4385
|
+
const { from: x, to: p } = a.state.doc.line(w), { from: N, to: T } = c, A = v(a, N, T);
|
|
4386
|
+
b.push(s.BlockquoteLine(x, A)), H(a.state).iterate({ from: x, to: p, ...F(x, p) });
|
|
4387
|
+
}
|
|
4388
|
+
return b;
|
|
4389
|
+
}, l = [];
|
|
4390
|
+
return E(t, {
|
|
4391
|
+
enter: ({ name: a }) => !(a in o),
|
|
4392
|
+
leave: ({ name: a, from: c, to: i, node: d }) => {
|
|
4393
|
+
if (a !== "Blockquote") return;
|
|
4394
|
+
const b = t.state.sliceDoc(c, i).split(`
|
|
4395
|
+
`), y = t.state.doc.lineAt(c);
|
|
4396
|
+
l.push(...g(t, d, y, b.length));
|
|
4397
|
+
}
|
|
4398
|
+
}), h.set(l, !0);
|
|
4399
|
+
}
|
|
4400
|
+
const qe = (t, r) => {
|
|
4401
|
+
const o = r.getChild("QuoteType");
|
|
4402
|
+
if (!o) return "none";
|
|
4403
|
+
const n = o.getChild("QuoteTypeText");
|
|
4404
|
+
return n ? t.state.sliceDoc(n.from, n.to).toLowerCase() : "none";
|
|
4405
|
+
}, He = () => B.baseTheme({
|
|
4406
|
+
"& .qt-mk": {
|
|
4407
|
+
// outline: "1px red solid",
|
|
4408
|
+
position: "relative",
|
|
4409
|
+
color: "transparent",
|
|
4410
|
+
verticalAlign: "top"
|
|
4411
|
+
},
|
|
4412
|
+
"& .qt-mk::after": {
|
|
4413
|
+
position: "absolute",
|
|
4414
|
+
content: '" "',
|
|
4415
|
+
// Las comillas dobles dentro de la cadena son necesarias
|
|
4416
|
+
backgroundColor: "currentColor",
|
|
4417
|
+
top: "-100vh",
|
|
4418
|
+
width: "4px",
|
|
4419
|
+
height: "200vh",
|
|
4420
|
+
zIndex: "-1"
|
|
4421
|
+
},
|
|
4422
|
+
"& .bq-line": { lineHeight: "1.2lh", overflowY: "hidden" },
|
|
4423
|
+
"&.cm-focused .bq-line.sw .bq-none-mark, .bq-none-mark::after": { color: "var(--bq-none-mark)" },
|
|
4424
|
+
"&.cm-focused .bq-line.sw .bq-note-mark, .bq-note-mark::after": { color: "var(--bq-note-mark)" },
|
|
4425
|
+
"&.cm-focused .bq-line.sw .bq-tip-mark, .bq-tip-mark::after": { color: "var(--bq-tip-mark)" },
|
|
4426
|
+
"&.cm-focused .bq-line.sw .bq-warning-mark, .bq-warning-mark::after": { color: "var(--bq-warning-mark)" },
|
|
4427
|
+
"&.cm-focused .bq-line.sw .bq-important-mark, .bq-important-mark::after": { color: "var(--bq-important-mark)" },
|
|
4428
|
+
"&.cm-focused .bq-line.sw .bq-caution-mark, .bq-caution-mark::after": { color: "var(--bq-caution-mark)" },
|
|
4429
|
+
"& .bq-text-line": {
|
|
4430
|
+
lineHeight: "1lh",
|
|
4431
|
+
// backgroundColor: "rgba(0, 0, 0, 0.1)",
|
|
4432
|
+
display: "inline-block",
|
|
4433
|
+
// maxWidth: "95%",
|
|
4434
|
+
paddingLeft: "6px",
|
|
4435
|
+
textIndent: "-7px",
|
|
4436
|
+
ariaHidden: "true"
|
|
4437
|
+
}
|
|
4438
|
+
}), $e = (t) => [
|
|
4439
|
+
C(Se, t),
|
|
4440
|
+
He()
|
|
4441
|
+
], Oe = {
|
|
4442
|
+
name: "QuoteTypeParser",
|
|
4443
|
+
parse(t, r) {
|
|
4444
|
+
if ((() => {
|
|
4445
|
+
for (let n = 0; n < t.depth; n++)
|
|
4446
|
+
if (t.parentType(n).name === "Blockquote") return !0;
|
|
4447
|
+
return !1;
|
|
4448
|
+
})()) {
|
|
4449
|
+
const n = r.text.match(/^(\s*>\s*)+(\[!\w+\])\s*$/);
|
|
4450
|
+
if (n && n[2]) {
|
|
4451
|
+
const s = n[2], g = r.text.indexOf(s), l = g + s.length, a = t.elt("QuoteType", t.lineStart + g, t.lineStart + l);
|
|
4452
|
+
a.children = [
|
|
4453
|
+
t.elt("QuoteTypeMark", t.lineStart + g, t.lineStart + g + 2),
|
|
4454
|
+
t.elt("QuoteTypeText", t.lineStart + g + 2, t.lineStart + l - 1),
|
|
4455
|
+
t.elt("QuoteTypeMark", t.lineStart + l - 1, t.lineStart + l)
|
|
4456
|
+
], t.addElement(a);
|
|
4457
|
+
}
|
|
4458
|
+
}
|
|
4459
|
+
return !1;
|
|
4460
|
+
}
|
|
4461
|
+
}, Re = {
|
|
4462
|
+
defineNodes: [
|
|
4463
|
+
{ name: "QuoteType", style: { "QuoteType/...": e.content } },
|
|
4464
|
+
{ name: "QuoteTypeMark", style: e.processingInstruction },
|
|
4465
|
+
{ name: "QuoteTypeText", style: e.bool }
|
|
4466
|
+
],
|
|
4467
|
+
parseBlock: [Oe]
|
|
4468
|
+
}, U = (t, r, o) => {
|
|
4469
|
+
const n = t.state.sliceDoc(r, o), s = n.match(/\[(.*)\]/);
|
|
4470
|
+
return s !== null && s.length > 1 ? {
|
|
4471
|
+
text: s[1],
|
|
4472
|
+
from: r + n.indexOf(s[1]),
|
|
4473
|
+
to: r + 1 + s[1].length
|
|
4474
|
+
} : { text: null };
|
|
4475
|
+
};
|
|
4476
|
+
function We(t, r) {
|
|
4477
|
+
const o = ["FencedCode", "Image", "Link"], n = {
|
|
4478
|
+
Link: {
|
|
4479
|
+
marks: ["LinkMark"],
|
|
4480
|
+
url: "URL"
|
|
4481
|
+
}
|
|
4482
|
+
}, s = {
|
|
4483
|
+
Link: (l, a, c) => h.mark({ class: "link " + (c ? "sw" : "") }).range(l, a),
|
|
4484
|
+
LinkMark: (l, a) => h.mark({ class: "lk-mk" }).range(l, a),
|
|
4485
|
+
TextDec: (l, a, c) => h.mark({
|
|
4486
|
+
class: "lk-text url",
|
|
4487
|
+
tagName: "a",
|
|
4488
|
+
attributes: { href: c, target: "_blank" }
|
|
4489
|
+
}).range(l, a),
|
|
4490
|
+
URL: (l, a, c) => h.mark({
|
|
4491
|
+
class: "lk-url url",
|
|
4492
|
+
tagName: "a",
|
|
4493
|
+
attributes: { href: c, target: "_blank" }
|
|
4494
|
+
}).range(l, a)
|
|
4495
|
+
}, g = [];
|
|
4496
|
+
return E(t, {
|
|
4497
|
+
enter: ({ type: { name: l }, from: a, to: c, node: i }) => {
|
|
4498
|
+
if (l === "URL" && g.push(s.URL(a, c, t.state.sliceDoc(a, c))), !(l in n)) return !o.includes(l);
|
|
4499
|
+
g.push(s.Link(a, c, v(t, a, c)));
|
|
4500
|
+
const d = n[l].marks.flatMap((f) => i.getChildren(f));
|
|
4501
|
+
g.push(...d.map(({ from: f, to: u }) => s.LinkMark(f, u)));
|
|
4502
|
+
const b = i.getChild(n[l].url);
|
|
4503
|
+
let y = null;
|
|
4504
|
+
if (b !== null) {
|
|
4505
|
+
const { from: f, to: u } = b;
|
|
4506
|
+
y = t.state.sliceDoc(f, u), g.push(s.URL(f, u, y));
|
|
4507
|
+
}
|
|
4508
|
+
if (i.getChild("Image") === null) {
|
|
4509
|
+
const { text: f, from: u, to: F } = U(t, a, c);
|
|
4510
|
+
f !== null && y !== null && g.push(s.TextDec(u, F, y));
|
|
4511
|
+
}
|
|
4512
|
+
return !1;
|
|
4513
|
+
}
|
|
4514
|
+
}), h.set(g, !0);
|
|
4515
|
+
}
|
|
4516
|
+
const Ie = (t, r) => t.ctrlKey ? Pe(
|
|
4517
|
+
t.target
|
|
4518
|
+
/* as HTMLElement */
|
|
4519
|
+
) : !1, Pe = (t) => {
|
|
4520
|
+
if (t.nodeName === "A" && t.href && t.classList.contains("url"))
|
|
4521
|
+
return window.open(t.href, t.target), !0;
|
|
4522
|
+
}, Ke = B.baseTheme({
|
|
4523
|
+
".lk-mk, .link > .lk-url": { display: "none" },
|
|
4524
|
+
"&.cm-focused .link.sw .lk-mk, &.cm-focused .link.sw .lk-url": { display: "inherit" }
|
|
4525
|
+
}), Qe = (t = {}) => {
|
|
4526
|
+
const {
|
|
4527
|
+
hideMarks: r = !0
|
|
4528
|
+
} = t;
|
|
4529
|
+
return [
|
|
4530
|
+
C(We, {}, { eventHandlers: { mousedown: Ie } }),
|
|
4531
|
+
Ke
|
|
4532
|
+
];
|
|
4533
|
+
};
|
|
4534
|
+
class ze extends S {
|
|
4535
|
+
constructor(r, o = null, n = "[image]") {
|
|
4536
|
+
super(), this.img = r, this.url = o, this.alt = n;
|
|
4537
|
+
}
|
|
4538
|
+
toDOM() {
|
|
4539
|
+
let r = document.createElement("img");
|
|
4540
|
+
if (r.src = this.img, r.alt = this.alt, r.style.minWidth = "100px", this.url) {
|
|
4541
|
+
let o = document.createElement("a");
|
|
4542
|
+
return o.href = this.url, o.target = "_blank", o.classList.add("url"), o.appendChild(r), o;
|
|
4543
|
+
} else
|
|
4544
|
+
return r;
|
|
4545
|
+
}
|
|
4546
|
+
eq(r) {
|
|
4547
|
+
return this.img === r.img;
|
|
4548
|
+
}
|
|
4549
|
+
ignoreEvent() {
|
|
4550
|
+
return !1;
|
|
4551
|
+
}
|
|
4552
|
+
}
|
|
4553
|
+
function Ge(t, r) {
|
|
4554
|
+
const o = ["FencedCode", "Image"], n = [];
|
|
4555
|
+
return E(t, {
|
|
4556
|
+
enter: ({ type: { name: s }, from: g, to: l, node: a }) => {
|
|
4557
|
+
if (s === "Image" && !v(t, g, l)) {
|
|
4558
|
+
const { from: c, to: i } = a.getChild("URL"), d = t.state.sliceDoc(c, i), { text: b } = U(t, g, l);
|
|
4559
|
+
n.push(
|
|
4560
|
+
h.replace({
|
|
4561
|
+
widget: new ze(d, _e(t, a), b)
|
|
4562
|
+
}).range(g, l)
|
|
4563
|
+
);
|
|
4564
|
+
}
|
|
4565
|
+
return !o.includes(s);
|
|
4566
|
+
}
|
|
4567
|
+
}), h.set(n, !1);
|
|
4568
|
+
}
|
|
4569
|
+
const _e = (t, r) => {
|
|
4570
|
+
const n = r.parent.getChild("URL");
|
|
4571
|
+
if (n !== null) {
|
|
4572
|
+
const { from: s, to: g } = n;
|
|
4573
|
+
return t.state.sliceDoc(s, g);
|
|
4574
|
+
}
|
|
4575
|
+
return null;
|
|
4576
|
+
}, Ye = (t, r) => t.ctrlKey ? je(
|
|
4577
|
+
t.target
|
|
4578
|
+
/* as HTMLElement */
|
|
4579
|
+
) : !1, je = (t) => {
|
|
4580
|
+
const r = t.parentElement ?? !1;
|
|
4581
|
+
if (t.nodeName === "IMG" && r && r.nodeName === "A" && r.classList.contains("url"))
|
|
4582
|
+
return !0;
|
|
4583
|
+
}, Ue = B.baseTheme({}), Ve = (t = {}) => {
|
|
4584
|
+
const {
|
|
4585
|
+
hideMarks: r = !0
|
|
4586
|
+
} = t;
|
|
4587
|
+
return [
|
|
4588
|
+
C(Ge, {}, { eventHandlers: { mousedown: Ye } }),
|
|
4589
|
+
Ue
|
|
4590
|
+
];
|
|
4591
|
+
}, Xe = (t = { markdown: {} }) => {
|
|
323
4592
|
const {
|
|
324
4593
|
markdown: {
|
|
325
|
-
defaultCodeLanguage:
|
|
326
|
-
codeLanguages:
|
|
327
|
-
addKeymap:
|
|
328
|
-
base:
|
|
329
|
-
completeHTMLTags:
|
|
330
|
-
htmlTagLanguage:
|
|
331
|
-
extensions:
|
|
332
|
-
},
|
|
333
|
-
inline:
|
|
334
|
-
Heading:
|
|
335
|
-
Hr:
|
|
336
|
-
List:
|
|
337
|
-
Code:
|
|
338
|
-
} = t,
|
|
339
|
-
defaultCodeLanguage:
|
|
340
|
-
codeLanguages:
|
|
341
|
-
addKeymap:
|
|
342
|
-
base:
|
|
343
|
-
completeHTMLTags:
|
|
344
|
-
htmlTagLanguage:
|
|
345
|
-
extensions: [...
|
|
4594
|
+
defaultCodeLanguage: r,
|
|
4595
|
+
codeLanguages: o,
|
|
4596
|
+
addKeymap: n,
|
|
4597
|
+
base: s,
|
|
4598
|
+
completeHTMLTags: g,
|
|
4599
|
+
htmlTagLanguage: l,
|
|
4600
|
+
extensions: a = []
|
|
4601
|
+
},
|
|
4602
|
+
inline: c,
|
|
4603
|
+
Heading: i,
|
|
4604
|
+
Hr: d,
|
|
4605
|
+
List: b,
|
|
4606
|
+
Code: y
|
|
4607
|
+
} = t, f = {
|
|
4608
|
+
defaultCodeLanguage: r,
|
|
4609
|
+
codeLanguages: o || Z,
|
|
4610
|
+
addKeymap: n,
|
|
4611
|
+
base: s,
|
|
4612
|
+
completeHTMLTags: g,
|
|
4613
|
+
htmlTagLanguage: l,
|
|
4614
|
+
extensions: [...a, ee, se, Re]
|
|
346
4615
|
};
|
|
347
4616
|
return [
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
4617
|
+
J(f),
|
|
4618
|
+
Le.of(De()),
|
|
4619
|
+
z(c),
|
|
4620
|
+
Y(i),
|
|
4621
|
+
G(b),
|
|
4622
|
+
Q(d),
|
|
4623
|
+
_(),
|
|
4624
|
+
Qe(),
|
|
4625
|
+
Ve(),
|
|
4626
|
+
$e()
|
|
354
4627
|
];
|
|
355
4628
|
};
|
|
356
|
-
typeof window < "u" && (window.gnosis =
|
|
4629
|
+
typeof window < "u" && (window.gnosis = Xe, window.HrPlugin = Q, window.ListPlugin = G, window.CodePlugin = _, window.InlinePlugin = z, window.HeadingPlugin = Y);
|
|
357
4630
|
export {
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
4631
|
+
_ as CodePlugin,
|
|
4632
|
+
Y as HeadingPlugin,
|
|
4633
|
+
Q as HrPlugin,
|
|
4634
|
+
z as InlinePlugin,
|
|
4635
|
+
G as ListPlugin,
|
|
4636
|
+
De as catppuccin,
|
|
4637
|
+
Xe as gnosis,
|
|
4638
|
+
Le as themeVariant
|
|
364
4639
|
};
|