@iyulab/chat-components 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/LICENSE +21 -0
  3. package/README.md +20 -0
  4. package/dist/components/blocks/UCodeBlock.component.d.ts +24 -0
  5. package/dist/components/blocks/UCodeBlock.component.js +65 -0
  6. package/dist/components/blocks/UCodeBlock.d.ts +7 -0
  7. package/dist/components/blocks/UCodeBlock.js +5 -0
  8. package/dist/components/blocks/UCodeBlock.styles.d.ts +1 -0
  9. package/dist/components/blocks/UCodeBlock.styles.js +175 -0
  10. package/dist/components/blocks/UMarkedBlock.component.d.ts +24 -0
  11. package/dist/components/blocks/UMarkedBlock.component.js +80 -0
  12. package/dist/components/blocks/UMarkedBlock.d.ts +7 -0
  13. package/dist/components/blocks/UMarkedBlock.js +5 -0
  14. package/dist/components/blocks/UMarkedBlock.styles.d.ts +1 -0
  15. package/dist/components/blocks/UMarkedBlock.styles.js +1240 -0
  16. package/dist/components/blocks/UTextBlock.component.d.ts +37 -0
  17. package/dist/components/blocks/UTextBlock.component.js +123 -0
  18. package/dist/components/blocks/UTextBlock.d.ts +7 -0
  19. package/dist/components/blocks/UTextBlock.js +5 -0
  20. package/dist/components/blocks/UTextBlock.styles.d.ts +1 -0
  21. package/dist/components/blocks/UTextBlock.styles.js +71 -0
  22. package/dist/components/blocks/UThinkBlock.component.d.ts +28 -0
  23. package/dist/components/blocks/UThinkBlock.component.js +84 -0
  24. package/dist/components/blocks/UThinkBlock.d.ts +7 -0
  25. package/dist/components/blocks/UThinkBlock.js +5 -0
  26. package/dist/components/blocks/UThinkBlock.styles.d.ts +1 -0
  27. package/dist/components/blocks/UThinkBlock.styles.js +93 -0
  28. package/dist/components/blocks/UToolBlock.component.d.ts +16 -0
  29. package/dist/components/blocks/UToolBlock.component.js +126 -0
  30. package/dist/components/blocks/UToolBlock.d.ts +7 -0
  31. package/dist/components/blocks/UToolBlock.js +5 -0
  32. package/dist/components/blocks/UToolBlock.styles.d.ts +1 -0
  33. package/dist/components/blocks/UToolBlock.styles.js +107 -0
  34. package/dist/components/buttons/UAttachButton.component.d.ts +24 -0
  35. package/dist/components/buttons/UAttachButton.component.js +78 -0
  36. package/dist/components/buttons/UAttachButton.d.ts +7 -0
  37. package/dist/components/buttons/UAttachButton.js +5 -0
  38. package/dist/components/buttons/UAttachButton.styles.d.ts +1 -0
  39. package/dist/components/buttons/UAttachButton.styles.js +21 -0
  40. package/dist/components/buttons/UCopyButton.component.d.ts +25 -0
  41. package/dist/components/buttons/UCopyButton.component.js +105 -0
  42. package/dist/components/buttons/UCopyButton.d.ts +7 -0
  43. package/dist/components/buttons/UCopyButton.js +5 -0
  44. package/dist/components/buttons/UCopyButton.styles.d.ts +1 -0
  45. package/dist/components/buttons/UCopyButton.styles.js +47 -0
  46. package/dist/components/buttons/USendButton.component.d.ts +13 -0
  47. package/dist/components/buttons/USendButton.component.js +46 -0
  48. package/dist/components/buttons/USendButton.d.ts +7 -0
  49. package/dist/components/buttons/USendButton.js +5 -0
  50. package/dist/components/buttons/USendButton.styles.d.ts +1 -0
  51. package/dist/components/buttons/USendButton.styles.js +23 -0
  52. package/dist/components/buttons/UThinkButton.component.d.ts +19 -0
  53. package/dist/components/buttons/UThinkButton.component.js +73 -0
  54. package/dist/components/buttons/UThinkButton.d.ts +7 -0
  55. package/dist/components/buttons/UThinkButton.js +5 -0
  56. package/dist/components/buttons/UThinkButton.styles.d.ts +1 -0
  57. package/dist/components/buttons/UThinkButton.styles.js +72 -0
  58. package/dist/components/json-viewer/UJsonViewer.component.d.ts +44 -0
  59. package/dist/components/json-viewer/UJsonViewer.component.js +137 -0
  60. package/dist/components/json-viewer/UJsonViewer.d.ts +7 -0
  61. package/dist/components/json-viewer/UJsonViewer.js +5 -0
  62. package/dist/components/json-viewer/UJsonViewer.lib.d.ts +16 -0
  63. package/dist/components/json-viewer/UJsonViewer.lib.js +28 -0
  64. package/dist/components/json-viewer/UJsonViewer.styles.d.ts +1 -0
  65. package/dist/components/json-viewer/UJsonViewer.styles.js +115 -0
  66. package/dist/components/message/UMessage.component.d.ts +13 -0
  67. package/dist/components/message/UMessage.component.js +104 -0
  68. package/dist/components/message/UMessage.d.ts +8 -0
  69. package/dist/components/message/UMessage.js +5 -0
  70. package/dist/components/message/UMessage.styles.d.ts +1 -0
  71. package/dist/components/message/UMessage.styles.js +72 -0
  72. package/dist/components/message/UMessage.types.d.ts +21 -0
  73. package/dist/events/UStopEvent.d.ts +6 -0
  74. package/dist/events/USubmitEvent.d.ts +6 -0
  75. package/dist/index.d.ts +13 -0
  76. package/dist/index.js +22 -0
  77. package/dist/internals/date-helpers.d.ts +8 -0
  78. package/dist/internals/date-helpers.js +27 -0
  79. package/package.json +65 -0
@@ -0,0 +1,1240 @@
1
+ import { css } from 'lit';
2
+
3
+ const styles = css`
4
+ :host {
5
+ --focus-outlineColor: #0969da;
6
+ --fgColor-default: #1f2328;
7
+ --fgColor-muted: #59636e;
8
+ --fgColor-accent: #0969da;
9
+ --fgColor-success: #1a7f37;
10
+ --fgColor-attention: #9a6700;
11
+ --fgColor-danger: #d1242f;
12
+ --fgColor-done: #8250df;
13
+ --bgColor-default: #ffffff;
14
+ --bgColor-muted: #f6f8fa;
15
+ --bgColor-neutral-muted: #818b981f;
16
+ --bgColor-attention-muted: #fff8c5;
17
+ --borderColor-default: #d1d9e0;
18
+ --borderColor-muted: #d1d9e0b3;
19
+ --borderColor-neutral-muted: #d1d9e0b3;
20
+ --borderColor-accent-emphasis: #0969da;
21
+ --borderColor-success-emphasis: #1a7f37;
22
+ --borderColor-attention-emphasis: #9a6700;
23
+ --borderColor-danger-emphasis: #cf222e;
24
+ --borderColor-done-emphasis: #8250df;
25
+ --color-prettylights-syntax-comment: #59636e;
26
+ --color-prettylights-syntax-constant: #0550ae;
27
+ --color-prettylights-syntax-constant-other-reference-link: #0a3069;
28
+ --color-prettylights-syntax-entity: #6639ba;
29
+ --color-prettylights-syntax-storage-modifier-import: #1f2328;
30
+ --color-prettylights-syntax-entity-tag: #0550ae;
31
+ --color-prettylights-syntax-keyword: #cf222e;
32
+ --color-prettylights-syntax-string: #0a3069;
33
+ --color-prettylights-syntax-variable: #953800;
34
+ --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
35
+ --color-prettylights-syntax-brackethighlighter-angle: #59636e;
36
+ --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
37
+ --color-prettylights-syntax-invalid-illegal-bg: #82071e;
38
+ --color-prettylights-syntax-carriage-return-text: #f6f8fa;
39
+ --color-prettylights-syntax-carriage-return-bg: #cf222e;
40
+ --color-prettylights-syntax-string-regexp: #116329;
41
+ --color-prettylights-syntax-markup-list: #3b2300;
42
+ --color-prettylights-syntax-markup-heading: #0550ae;
43
+ --color-prettylights-syntax-markup-italic: #1f2328;
44
+ --color-prettylights-syntax-markup-bold: #1f2328;
45
+ --color-prettylights-syntax-markup-deleted-text: #82071e;
46
+ --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
47
+ --color-prettylights-syntax-markup-inserted-text: #116329;
48
+ --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
49
+ --color-prettylights-syntax-markup-changed-text: #953800;
50
+ --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
51
+ --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
52
+ --color-prettylights-syntax-markup-ignored-bg: #0550ae;
53
+ --color-prettylights-syntax-meta-diff-range: #8250df;
54
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
55
+ }
56
+ :host-context([theme="dark"]) {
57
+ --focus-outlineColor: #1f6feb;
58
+ --fgColor-default: #f0f6fc;
59
+ --fgColor-muted: #9198a1;
60
+ --fgColor-accent: #4493f8;
61
+ --fgColor-success: #3fb950;
62
+ --fgColor-attention: #d29922;
63
+ --fgColor-danger: #f85149;
64
+ --fgColor-done: #ab7df8;
65
+ --bgColor-default: #0d1117;
66
+ --bgColor-muted: #151b23;
67
+ --bgColor-neutral-muted: #656c7633;
68
+ --bgColor-attention-muted: #bb800926;
69
+ --borderColor-default: #3d444d;
70
+ --borderColor-muted: #3d444db3;
71
+ --borderColor-neutral-muted: #3d444db3;
72
+ --borderColor-accent-emphasis: #1f6feb;
73
+ --borderColor-success-emphasis: #238636;
74
+ --borderColor-attention-emphasis: #9e6a03;
75
+ --borderColor-danger-emphasis: #da3633;
76
+ --borderColor-done-emphasis: #8957e5;
77
+ --color-prettylights-syntax-comment: #9198a1;
78
+ --color-prettylights-syntax-constant: #79c0ff;
79
+ --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
80
+ --color-prettylights-syntax-entity: #d2a8ff;
81
+ --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
82
+ --color-prettylights-syntax-entity-tag: #7ee787;
83
+ --color-prettylights-syntax-keyword: #ff7b72;
84
+ --color-prettylights-syntax-string: #a5d6ff;
85
+ --color-prettylights-syntax-variable: #ffa657;
86
+ --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
87
+ --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
88
+ --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
89
+ --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
90
+ --color-prettylights-syntax-carriage-return-text: #f0f6fc;
91
+ --color-prettylights-syntax-carriage-return-bg: #b62324;
92
+ --color-prettylights-syntax-string-regexp: #7ee787;
93
+ --color-prettylights-syntax-markup-list: #f2cc60;
94
+ --color-prettylights-syntax-markup-heading: #1f6feb;
95
+ --color-prettylights-syntax-markup-italic: #f0f6fc;
96
+ --color-prettylights-syntax-markup-bold: #f0f6fc;
97
+ --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
98
+ --color-prettylights-syntax-markup-deleted-bg: #67060c;
99
+ --color-prettylights-syntax-markup-inserted-text: #aff5b4;
100
+ --color-prettylights-syntax-markup-inserted-bg: #033a16;
101
+ --color-prettylights-syntax-markup-changed-text: #ffdfb6;
102
+ --color-prettylights-syntax-markup-changed-bg: #5a1e02;
103
+ --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
104
+ --color-prettylights-syntax-markup-ignored-bg: #1158c7;
105
+ --color-prettylights-syntax-meta-diff-range: #d2a8ff;
106
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
107
+ }
108
+
109
+ :host {
110
+ display: block;
111
+ width: 100%;
112
+ height: auto;
113
+ }
114
+
115
+ /* github-markdown styles */
116
+ .markdown-body {
117
+ --base-size-4: 0.25rem;
118
+ --base-size-8: 0.5rem;
119
+ --base-size-16: 1rem;
120
+ --base-size-24: 1.5rem;
121
+ --base-size-40: 2.5rem;
122
+ --base-text-weight-normal: 400;
123
+ --base-text-weight-medium: 500;
124
+ --base-text-weight-semibold: 600;
125
+ --fontStack-monospace: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
126
+ --fgColor-accent: Highlight;
127
+ }
128
+
129
+ .markdown-body {
130
+ -ms-text-size-adjust: 100%;
131
+ -webkit-text-size-adjust: 100%;
132
+ margin: 0;
133
+ color: var(--fgColor-default);
134
+ background-color: var(--bgColor-default);
135
+ font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
136
+ font-size: 16px;
137
+ line-height: 1.5;
138
+ word-wrap: break-word;
139
+ }
140
+
141
+ /* custom block */
142
+ .markdown-body u-code-block {
143
+ margin-bottom: var(--base-size-16);
144
+ }
145
+
146
+ .markdown-body .octicon {
147
+ display: inline-block;
148
+ fill: currentColor;
149
+ vertical-align: text-bottom;
150
+ }
151
+
152
+ .markdown-body h1:hover .anchor .octicon-link:before,
153
+ .markdown-body h2:hover .anchor .octicon-link:before,
154
+ .markdown-body h3:hover .anchor .octicon-link:before,
155
+ .markdown-body h4:hover .anchor .octicon-link:before,
156
+ .markdown-body h5:hover .anchor .octicon-link:before,
157
+ .markdown-body h6:hover .anchor .octicon-link:before {
158
+ width: 16px;
159
+ height: 16px;
160
+ content: ' ';
161
+ display: inline-block;
162
+ background-color: currentColor;
163
+ -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
164
+ mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
165
+ }
166
+
167
+ .markdown-body details,
168
+ .markdown-body figcaption,
169
+ .markdown-body figure {
170
+ display: block;
171
+ }
172
+
173
+ .markdown-body summary {
174
+ display: list-item;
175
+ }
176
+
177
+ .markdown-body [hidden] {
178
+ display: none !important;
179
+ }
180
+
181
+ .markdown-body a {
182
+ background-color: transparent;
183
+ color: var(--fgColor-accent);
184
+ text-decoration: none;
185
+ }
186
+
187
+ .markdown-body abbr[title] {
188
+ border-bottom: none;
189
+ -webkit-text-decoration: underline dotted;
190
+ text-decoration: underline dotted;
191
+ }
192
+
193
+ .markdown-body b,
194
+ .markdown-body strong {
195
+ font-weight: var(--base-text-weight-semibold, 600);
196
+ }
197
+
198
+ .markdown-body dfn {
199
+ font-style: italic;
200
+ }
201
+
202
+ .markdown-body h1 {
203
+ margin: .67em 0;
204
+ font-weight: var(--base-text-weight-semibold, 600);
205
+ padding-bottom: .3em;
206
+ font-size: 2em;
207
+ border-bottom: 1px solid var(--borderColor-muted);
208
+ }
209
+
210
+ .markdown-body mark {
211
+ background-color: var(--bgColor-attention-muted);
212
+ color: var(--fgColor-default);
213
+ }
214
+
215
+ .markdown-body small {
216
+ font-size: 90%;
217
+ }
218
+
219
+ .markdown-body sub,
220
+ .markdown-body sup {
221
+ font-size: 75%;
222
+ line-height: 0;
223
+ position: relative;
224
+ vertical-align: baseline;
225
+ }
226
+
227
+ .markdown-body sub {
228
+ bottom: -0.25em;
229
+ }
230
+
231
+ .markdown-body sup {
232
+ top: -0.5em;
233
+ }
234
+
235
+ .markdown-body img {
236
+ border-style: none;
237
+ max-width: 100%;
238
+ box-sizing: content-box;
239
+ }
240
+
241
+ .markdown-body code,
242
+ .markdown-body kbd,
243
+ .markdown-body pre,
244
+ .markdown-body samp {
245
+ font-family: monospace;
246
+ font-size: 1em;
247
+ }
248
+
249
+ .markdown-body figure {
250
+ margin: 1em var(--base-size-40);
251
+ }
252
+
253
+ .markdown-body hr {
254
+ box-sizing: content-box;
255
+ overflow: hidden;
256
+ background: transparent;
257
+ border-bottom: 1px solid var(--borderColor-muted);
258
+ height: .25em;
259
+ padding: 0;
260
+ margin: var(--base-size-24) 0;
261
+ background-color: var(--borderColor-default);
262
+ border: 0;
263
+ }
264
+
265
+ .markdown-body input {
266
+ font: inherit;
267
+ margin: 0;
268
+ overflow: visible;
269
+ font-family: inherit;
270
+ font-size: inherit;
271
+ line-height: inherit;
272
+ }
273
+
274
+ .markdown-body [type=button],
275
+ .markdown-body [type=reset],
276
+ .markdown-body [type=submit] {
277
+ -webkit-appearance: button;
278
+ appearance: button;
279
+ }
280
+
281
+ .markdown-body [type=checkbox],
282
+ .markdown-body [type=radio] {
283
+ box-sizing: border-box;
284
+ padding: 0;
285
+ }
286
+
287
+ .markdown-body [type=number]::-webkit-inner-spin-button,
288
+ .markdown-body [type=number]::-webkit-outer-spin-button {
289
+ height: auto;
290
+ }
291
+
292
+ .markdown-body [type=search]::-webkit-search-cancel-button,
293
+ .markdown-body [type=search]::-webkit-search-decoration {
294
+ -webkit-appearance: none;
295
+ appearance: none;
296
+ }
297
+
298
+ .markdown-body ::-webkit-input-placeholder {
299
+ color: inherit;
300
+ opacity: .54;
301
+ }
302
+
303
+ .markdown-body ::-webkit-file-upload-button {
304
+ -webkit-appearance: button;
305
+ appearance: button;
306
+ font: inherit;
307
+ }
308
+
309
+ .markdown-body a:hover {
310
+ text-decoration: underline;
311
+ }
312
+
313
+ .markdown-body ::placeholder {
314
+ color: var(--fgColor-muted);
315
+ opacity: 1;
316
+ }
317
+
318
+ .markdown-body hr::before {
319
+ display: table;
320
+ content: "";
321
+ }
322
+
323
+ .markdown-body hr::after {
324
+ display: table;
325
+ clear: both;
326
+ content: "";
327
+ }
328
+
329
+ .markdown-body table {
330
+ border-spacing: 0;
331
+ border-collapse: collapse;
332
+ display: block;
333
+ width: max-content;
334
+ max-width: 100%;
335
+ overflow: auto;
336
+ font-variant: tabular-nums;
337
+ }
338
+
339
+ .markdown-body td,
340
+ .markdown-body th {
341
+ padding: 0;
342
+ }
343
+
344
+ .markdown-body details summary {
345
+ cursor: pointer;
346
+ }
347
+
348
+ .markdown-body a:focus,
349
+ .markdown-body [role=button]:focus,
350
+ .markdown-body input[type=radio]:focus,
351
+ .markdown-body input[type=checkbox]:focus {
352
+ outline: 2px solid var(--focus-outlineColor);
353
+ outline-offset: -2px;
354
+ box-shadow: none;
355
+ }
356
+
357
+ .markdown-body a:focus:not(:focus-visible),
358
+ .markdown-body [role=button]:focus:not(:focus-visible),
359
+ .markdown-body input[type=radio]:focus:not(:focus-visible),
360
+ .markdown-body input[type=checkbox]:focus:not(:focus-visible) {
361
+ outline: solid 1px transparent;
362
+ }
363
+
364
+ .markdown-body a:focus-visible,
365
+ .markdown-body [role=button]:focus-visible,
366
+ .markdown-body input[type=radio]:focus-visible,
367
+ .markdown-body input[type=checkbox]:focus-visible {
368
+ outline: 2px solid var(--focus-outlineColor);
369
+ outline-offset: -2px;
370
+ box-shadow: none;
371
+ }
372
+
373
+ .markdown-body a:not([class]):focus,
374
+ .markdown-body a:not([class]):focus-visible,
375
+ .markdown-body input[type=radio]:focus,
376
+ .markdown-body input[type=radio]:focus-visible,
377
+ .markdown-body input[type=checkbox]:focus,
378
+ .markdown-body input[type=checkbox]:focus-visible {
379
+ outline-offset: 0;
380
+ }
381
+
382
+ .markdown-body kbd {
383
+ display: inline-block;
384
+ padding: var(--base-size-4);
385
+ font: 11px var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);
386
+ line-height: 10px;
387
+ color: var(--fgColor-default);
388
+ vertical-align: middle;
389
+ background-color: var(--bgColor-muted);
390
+ border: solid 1px var(--borderColor-neutral-muted);
391
+ border-bottom-color: var(--borderColor-neutral-muted);
392
+ border-radius: 6px;
393
+ box-shadow: inset 0 -1px 0 var(--borderColor-neutral-muted);
394
+ }
395
+
396
+ .markdown-body h1,
397
+ .markdown-body h2,
398
+ .markdown-body h3,
399
+ .markdown-body h4,
400
+ .markdown-body h5,
401
+ .markdown-body h6 {
402
+ margin-top: var(--base-size-24);
403
+ margin-bottom: var(--base-size-16);
404
+ font-weight: var(--base-text-weight-semibold, 600);
405
+ line-height: 1.25;
406
+ }
407
+
408
+ .markdown-body h2 {
409
+ font-weight: var(--base-text-weight-semibold, 600);
410
+ padding-bottom: .3em;
411
+ font-size: 1.5em;
412
+ border-bottom: 1px solid var(--borderColor-muted);
413
+ }
414
+
415
+ .markdown-body h3 {
416
+ font-weight: var(--base-text-weight-semibold, 600);
417
+ font-size: 1.25em;
418
+ }
419
+
420
+ .markdown-body h4 {
421
+ font-weight: var(--base-text-weight-semibold, 600);
422
+ font-size: 1em;
423
+ }
424
+
425
+ .markdown-body h5 {
426
+ font-weight: var(--base-text-weight-semibold, 600);
427
+ font-size: .875em;
428
+ }
429
+
430
+ .markdown-body h6 {
431
+ font-weight: var(--base-text-weight-semibold, 600);
432
+ font-size: .85em;
433
+ color: var(--fgColor-muted);
434
+ }
435
+
436
+ .markdown-body p {
437
+ margin-top: 0;
438
+ margin-bottom: 10px;
439
+ }
440
+
441
+ .markdown-body blockquote {
442
+ margin: 0;
443
+ padding: 0 1em;
444
+ color: var(--fgColor-muted);
445
+ border-left: .25em solid var(--borderColor-default);
446
+ }
447
+
448
+ .markdown-body ul,
449
+ .markdown-body ol {
450
+ margin-top: 0;
451
+ margin-bottom: 0;
452
+ padding-left: 2em;
453
+ }
454
+
455
+ .markdown-body ol ol,
456
+ .markdown-body ul ol {
457
+ list-style-type: lower-roman;
458
+ }
459
+
460
+ .markdown-body ul ul ol,
461
+ .markdown-body ul ol ol,
462
+ .markdown-body ol ul ol,
463
+ .markdown-body ol ol ol {
464
+ list-style-type: lower-alpha;
465
+ }
466
+
467
+ .markdown-body dd {
468
+ margin-left: 0;
469
+ }
470
+
471
+ .markdown-body tt,
472
+ .markdown-body code,
473
+ .markdown-body samp {
474
+ font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);
475
+ font-size: 12px;
476
+ }
477
+
478
+ .markdown-body pre {
479
+ margin-top: 0;
480
+ margin-bottom: 0;
481
+ font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);
482
+ font-size: 12px;
483
+ word-wrap: normal;
484
+ }
485
+
486
+ .markdown-body .octicon {
487
+ display: inline-block;
488
+ overflow: visible !important;
489
+ vertical-align: text-bottom;
490
+ fill: currentColor;
491
+ }
492
+
493
+ .markdown-body input::-webkit-outer-spin-button,
494
+ .markdown-body input::-webkit-inner-spin-button {
495
+ margin: 0;
496
+ appearance: none;
497
+ }
498
+
499
+ .markdown-body .mr-2 {
500
+ margin-right: var(--base-size-8, 8px) !important;
501
+ }
502
+
503
+ .markdown-body::before {
504
+ display: table;
505
+ content: "";
506
+ }
507
+
508
+ .markdown-body::after {
509
+ display: table;
510
+ clear: both;
511
+ content: "";
512
+ }
513
+
514
+ .markdown-body>*:first-child {
515
+ margin-top: 0 !important;
516
+ }
517
+
518
+ .markdown-body>*:last-child {
519
+ margin-bottom: 0 !important;
520
+ }
521
+
522
+ .markdown-body a:not([href]) {
523
+ color: inherit;
524
+ text-decoration: none;
525
+ }
526
+
527
+ .markdown-body .absent {
528
+ color: var(--fgColor-danger);
529
+ }
530
+
531
+ .markdown-body .anchor {
532
+ float: left;
533
+ padding-right: var(--base-size-4);
534
+ margin-left: -20px;
535
+ line-height: 1;
536
+ }
537
+
538
+ .markdown-body .anchor:focus {
539
+ outline: none;
540
+ }
541
+
542
+ .markdown-body p,
543
+ .markdown-body blockquote,
544
+ .markdown-body ul,
545
+ .markdown-body ol,
546
+ .markdown-body dl,
547
+ .markdown-body table,
548
+ .markdown-body pre,
549
+ .markdown-body details {
550
+ margin-top: 0;
551
+ margin-bottom: var(--base-size-16);
552
+ }
553
+
554
+ .markdown-body blockquote>:first-child {
555
+ margin-top: 0;
556
+ }
557
+
558
+ .markdown-body blockquote>:last-child {
559
+ margin-bottom: 0;
560
+ }
561
+
562
+ .markdown-body h1 .octicon-link,
563
+ .markdown-body h2 .octicon-link,
564
+ .markdown-body h3 .octicon-link,
565
+ .markdown-body h4 .octicon-link,
566
+ .markdown-body h5 .octicon-link,
567
+ .markdown-body h6 .octicon-link {
568
+ color: var(--fgColor-default);
569
+ vertical-align: middle;
570
+ visibility: hidden;
571
+ }
572
+
573
+ .markdown-body h1:hover .anchor,
574
+ .markdown-body h2:hover .anchor,
575
+ .markdown-body h3:hover .anchor,
576
+ .markdown-body h4:hover .anchor,
577
+ .markdown-body h5:hover .anchor,
578
+ .markdown-body h6:hover .anchor {
579
+ text-decoration: none;
580
+ }
581
+
582
+ .markdown-body h1:hover .anchor .octicon-link,
583
+ .markdown-body h2:hover .anchor .octicon-link,
584
+ .markdown-body h3:hover .anchor .octicon-link,
585
+ .markdown-body h4:hover .anchor .octicon-link,
586
+ .markdown-body h5:hover .anchor .octicon-link,
587
+ .markdown-body h6:hover .anchor .octicon-link {
588
+ visibility: visible;
589
+ }
590
+
591
+ .markdown-body h1 tt,
592
+ .markdown-body h1 code,
593
+ .markdown-body h2 tt,
594
+ .markdown-body h2 code,
595
+ .markdown-body h3 tt,
596
+ .markdown-body h3 code,
597
+ .markdown-body h4 tt,
598
+ .markdown-body h4 code,
599
+ .markdown-body h5 tt,
600
+ .markdown-body h5 code,
601
+ .markdown-body h6 tt,
602
+ .markdown-body h6 code {
603
+ padding: 0 .2em;
604
+ font-size: inherit;
605
+ }
606
+
607
+ .markdown-body summary h1,
608
+ .markdown-body summary h2,
609
+ .markdown-body summary h3,
610
+ .markdown-body summary h4,
611
+ .markdown-body summary h5,
612
+ .markdown-body summary h6 {
613
+ display: inline-block;
614
+ }
615
+
616
+ .markdown-body summary h1 .anchor,
617
+ .markdown-body summary h2 .anchor,
618
+ .markdown-body summary h3 .anchor,
619
+ .markdown-body summary h4 .anchor,
620
+ .markdown-body summary h5 .anchor,
621
+ .markdown-body summary h6 .anchor {
622
+ margin-left: -40px;
623
+ }
624
+
625
+ .markdown-body summary h1,
626
+ .markdown-body summary h2 {
627
+ padding-bottom: 0;
628
+ border-bottom: 0;
629
+ }
630
+
631
+ .markdown-body ul.no-list,
632
+ .markdown-body ol.no-list {
633
+ padding: 0;
634
+ list-style-type: none;
635
+ }
636
+
637
+ .markdown-body ol[type="a s"] {
638
+ list-style-type: lower-alpha;
639
+ }
640
+
641
+ .markdown-body ol[type="A s"] {
642
+ list-style-type: upper-alpha;
643
+ }
644
+
645
+ .markdown-body ol[type="i s"] {
646
+ list-style-type: lower-roman;
647
+ }
648
+
649
+ .markdown-body ol[type="I s"] {
650
+ list-style-type: upper-roman;
651
+ }
652
+
653
+ .markdown-body ol[type="1"] {
654
+ list-style-type: decimal;
655
+ }
656
+
657
+ .markdown-body div>ol:not([type]) {
658
+ list-style-type: decimal;
659
+ }
660
+
661
+ .markdown-body ul ul,
662
+ .markdown-body ul ol,
663
+ .markdown-body ol ol,
664
+ .markdown-body ol ul {
665
+ margin-top: 0;
666
+ margin-bottom: 0;
667
+ }
668
+
669
+ .markdown-body li>p {
670
+ margin-top: var(--base-size-16);
671
+ }
672
+
673
+ .markdown-body li+li {
674
+ margin-top: .25em;
675
+ }
676
+
677
+ .markdown-body dl {
678
+ padding: 0;
679
+ }
680
+
681
+ .markdown-body dl dt {
682
+ padding: 0;
683
+ margin-top: var(--base-size-16);
684
+ font-size: 1em;
685
+ font-style: italic;
686
+ font-weight: var(--base-text-weight-semibold, 600);
687
+ }
688
+
689
+ .markdown-body dl dd {
690
+ padding: 0 var(--base-size-16);
691
+ margin-bottom: var(--base-size-16);
692
+ }
693
+
694
+ .markdown-body table th {
695
+ font-weight: var(--base-text-weight-semibold, 600);
696
+ }
697
+
698
+ .markdown-body table th,
699
+ .markdown-body table td {
700
+ padding: 6px 13px;
701
+ border: 1px solid var(--borderColor-default);
702
+ }
703
+
704
+ .markdown-body table td>:last-child {
705
+ margin-bottom: 0;
706
+ }
707
+
708
+ .markdown-body table tr {
709
+ background-color: var(--bgColor-default);
710
+ border-top: 1px solid var(--borderColor-muted);
711
+ }
712
+
713
+ .markdown-body table tr:nth-child(2n) {
714
+ background-color: var(--bgColor-muted);
715
+ }
716
+
717
+ .markdown-body table img {
718
+ background-color: transparent;
719
+ }
720
+
721
+ .markdown-body img[align=right] {
722
+ padding-left: 20px;
723
+ }
724
+
725
+ .markdown-body img[align=left] {
726
+ padding-right: 20px;
727
+ }
728
+
729
+ .markdown-body .emoji {
730
+ max-width: none;
731
+ vertical-align: text-top;
732
+ background-color: transparent;
733
+ }
734
+
735
+ .markdown-body span.frame {
736
+ display: block;
737
+ overflow: hidden;
738
+ }
739
+
740
+ .markdown-body span.frame>span {
741
+ display: block;
742
+ float: left;
743
+ width: auto;
744
+ padding: 7px;
745
+ margin: 13px 0 0;
746
+ overflow: hidden;
747
+ border: 1px solid var(--borderColor-default);
748
+ }
749
+
750
+ .markdown-body span.frame span img {
751
+ display: block;
752
+ float: left;
753
+ }
754
+
755
+ .markdown-body span.frame span span {
756
+ display: block;
757
+ padding: 5px 0 0;
758
+ clear: both;
759
+ color: var(--fgColor-default);
760
+ }
761
+
762
+ .markdown-body span.align-center {
763
+ display: block;
764
+ overflow: hidden;
765
+ clear: both;
766
+ }
767
+
768
+ .markdown-body span.align-center>span {
769
+ display: block;
770
+ margin: 13px auto 0;
771
+ overflow: hidden;
772
+ text-align: center;
773
+ }
774
+
775
+ .markdown-body span.align-center span img {
776
+ margin: 0 auto;
777
+ text-align: center;
778
+ }
779
+
780
+ .markdown-body span.align-right {
781
+ display: block;
782
+ overflow: hidden;
783
+ clear: both;
784
+ }
785
+
786
+ .markdown-body span.align-right>span {
787
+ display: block;
788
+ margin: 13px 0 0;
789
+ overflow: hidden;
790
+ text-align: right;
791
+ }
792
+
793
+ .markdown-body span.align-right span img {
794
+ margin: 0;
795
+ text-align: right;
796
+ }
797
+
798
+ .markdown-body span.float-left {
799
+ display: block;
800
+ float: left;
801
+ margin-right: 13px;
802
+ overflow: hidden;
803
+ }
804
+
805
+ .markdown-body span.float-left span {
806
+ margin: 13px 0 0;
807
+ }
808
+
809
+ .markdown-body span.float-right {
810
+ display: block;
811
+ float: right;
812
+ margin-left: 13px;
813
+ overflow: hidden;
814
+ }
815
+
816
+ .markdown-body span.float-right>span {
817
+ display: block;
818
+ margin: 13px auto 0;
819
+ overflow: hidden;
820
+ text-align: right;
821
+ }
822
+
823
+ .markdown-body code,
824
+ .markdown-body tt {
825
+ padding: .2em .4em;
826
+ margin: 0;
827
+ font-size: 85%;
828
+ font-weight: 600;
829
+ white-space: break-spaces;
830
+ background-color: var(--bgColor-neutral-muted);
831
+ border-radius: 6px;
832
+ color: var(--color-prettylights-syntax-keyword);
833
+ }
834
+
835
+ .markdown-body code br,
836
+ .markdown-body tt br {
837
+ display: none;
838
+ }
839
+
840
+ .markdown-body del code {
841
+ text-decoration: inherit;
842
+ }
843
+
844
+ .markdown-body samp {
845
+ font-size: 85%;
846
+ }
847
+
848
+ .markdown-body pre code {
849
+ font-size: 100%;
850
+ }
851
+
852
+ .markdown-body pre>code {
853
+ padding: 0;
854
+ margin: 0;
855
+ word-break: normal;
856
+ white-space: pre;
857
+ background: transparent;
858
+ border: 0;
859
+ }
860
+
861
+ .markdown-body .highlight {
862
+ margin-bottom: var(--base-size-16);
863
+ }
864
+
865
+ .markdown-body .highlight pre {
866
+ margin-bottom: 0;
867
+ word-break: normal;
868
+ }
869
+
870
+ .markdown-body .highlight pre,
871
+ .markdown-body pre {
872
+ padding: var(--base-size-16);
873
+ overflow: auto;
874
+ font-size: 85%;
875
+ line-height: 1.45;
876
+ color: var(--fgColor-default);
877
+ background-color: var(--bgColor-muted);
878
+ border-radius: 6px;
879
+ }
880
+
881
+ .markdown-body pre code,
882
+ .markdown-body pre tt {
883
+ display: inline;
884
+ max-width: auto;
885
+ padding: 0;
886
+ margin: 0;
887
+ overflow: visible;
888
+ line-height: inherit;
889
+ word-wrap: normal;
890
+ background-color: transparent;
891
+ border: 0;
892
+ }
893
+
894
+ .markdown-body .csv-data td,
895
+ .markdown-body .csv-data th {
896
+ padding: 5px;
897
+ overflow: hidden;
898
+ font-size: 12px;
899
+ line-height: 1;
900
+ text-align: left;
901
+ white-space: nowrap;
902
+ }
903
+
904
+ .markdown-body .csv-data .blob-num {
905
+ padding: 10px var(--base-size-8) 9px;
906
+ text-align: right;
907
+ background: var(--bgColor-default);
908
+ border: 0;
909
+ }
910
+
911
+ .markdown-body .csv-data tr {
912
+ border-top: 0;
913
+ }
914
+
915
+ .markdown-body .csv-data th {
916
+ font-weight: var(--base-text-weight-semibold, 600);
917
+ background: var(--bgColor-muted);
918
+ border-top: 0;
919
+ }
920
+
921
+ .markdown-body [data-footnote-ref]::before {
922
+ content: "[";
923
+ }
924
+
925
+ .markdown-body [data-footnote-ref]::after {
926
+ content: "]";
927
+ }
928
+
929
+ .markdown-body .footnotes {
930
+ font-size: 12px;
931
+ color: var(--fgColor-muted);
932
+ border-top: 1px solid var(--borderColor-default);
933
+ }
934
+
935
+ .markdown-body .footnotes ol {
936
+ padding-left: var(--base-size-16);
937
+ }
938
+
939
+ .markdown-body .footnotes ol ul {
940
+ display: inline-block;
941
+ padding-left: var(--base-size-16);
942
+ margin-top: var(--base-size-16);
943
+ }
944
+
945
+ .markdown-body .footnotes li {
946
+ position: relative;
947
+ }
948
+
949
+ .markdown-body .footnotes li:target::before {
950
+ position: absolute;
951
+ top: calc(var(--base-size-8)*-1);
952
+ right: calc(var(--base-size-8)*-1);
953
+ bottom: calc(var(--base-size-8)*-1);
954
+ left: calc(var(--base-size-24)*-1);
955
+ pointer-events: none;
956
+ content: "";
957
+ border: 2px solid var(--borderColor-accent-emphasis);
958
+ border-radius: 6px;
959
+ }
960
+
961
+ .markdown-body .footnotes li:target {
962
+ color: var(--fgColor-default);
963
+ }
964
+
965
+ .markdown-body .footnotes .data-footnote-backref g-emoji {
966
+ font-family: monospace;
967
+ }
968
+
969
+ .markdown-body body:has(:modal) {
970
+ padding-right: var(--dialog-scrollgutter) !important;
971
+ }
972
+
973
+ .markdown-body .pl-c {
974
+ color: var(--color-prettylights-syntax-comment);
975
+ }
976
+
977
+ .markdown-body .pl-c1,
978
+ .markdown-body .pl-s .pl-v {
979
+ color: var(--color-prettylights-syntax-constant);
980
+ }
981
+
982
+ .markdown-body .pl-e,
983
+ .markdown-body .pl-en {
984
+ color: var(--color-prettylights-syntax-entity);
985
+ }
986
+
987
+ .markdown-body .pl-smi,
988
+ .markdown-body .pl-s .pl-s1 {
989
+ color: var(--color-prettylights-syntax-storage-modifier-import);
990
+ }
991
+
992
+ .markdown-body .pl-ent {
993
+ color: var(--color-prettylights-syntax-entity-tag);
994
+ }
995
+
996
+ .markdown-body .pl-k {
997
+ color: var(--color-prettylights-syntax-keyword);
998
+ }
999
+
1000
+ .markdown-body .pl-s,
1001
+ .markdown-body .pl-pds,
1002
+ .markdown-body .pl-s .pl-pse .pl-s1,
1003
+ .markdown-body .pl-sr,
1004
+ .markdown-body .pl-sr .pl-cce,
1005
+ .markdown-body .pl-sr .pl-sre,
1006
+ .markdown-body .pl-sr .pl-sra {
1007
+ color: var(--color-prettylights-syntax-string);
1008
+ }
1009
+
1010
+ .markdown-body .pl-v,
1011
+ .markdown-body .pl-smw {
1012
+ color: var(--color-prettylights-syntax-variable);
1013
+ }
1014
+
1015
+ .markdown-body .pl-bu {
1016
+ color: var(--color-prettylights-syntax-brackethighlighter-unmatched);
1017
+ }
1018
+
1019
+ .markdown-body .pl-ii {
1020
+ color: var(--color-prettylights-syntax-invalid-illegal-text);
1021
+ background-color: var(--color-prettylights-syntax-invalid-illegal-bg);
1022
+ }
1023
+
1024
+ .markdown-body .pl-c2 {
1025
+ color: var(--color-prettylights-syntax-carriage-return-text);
1026
+ background-color: var(--color-prettylights-syntax-carriage-return-bg);
1027
+ }
1028
+
1029
+ .markdown-body .pl-sr .pl-cce {
1030
+ font-weight: bold;
1031
+ color: var(--color-prettylights-syntax-string-regexp);
1032
+ }
1033
+
1034
+ .markdown-body .pl-ml {
1035
+ color: var(--color-prettylights-syntax-markup-list);
1036
+ }
1037
+
1038
+ .markdown-body .pl-mh,
1039
+ .markdown-body .pl-mh .pl-en,
1040
+ .markdown-body .pl-ms {
1041
+ font-weight: bold;
1042
+ color: var(--color-prettylights-syntax-markup-heading);
1043
+ }
1044
+
1045
+ .markdown-body .pl-mi {
1046
+ font-style: italic;
1047
+ color: var(--color-prettylights-syntax-markup-italic);
1048
+ }
1049
+
1050
+ .markdown-body .pl-mb {
1051
+ font-weight: bold;
1052
+ color: var(--color-prettylights-syntax-markup-bold);
1053
+ }
1054
+
1055
+ .markdown-body .pl-md {
1056
+ color: var(--color-prettylights-syntax-markup-deleted-text);
1057
+ background-color: var(--color-prettylights-syntax-markup-deleted-bg);
1058
+ }
1059
+
1060
+ .markdown-body .pl-mi1 {
1061
+ color: var(--color-prettylights-syntax-markup-inserted-text);
1062
+ background-color: var(--color-prettylights-syntax-markup-inserted-bg);
1063
+ }
1064
+
1065
+ .markdown-body .pl-mc {
1066
+ color: var(--color-prettylights-syntax-markup-changed-text);
1067
+ background-color: var(--color-prettylights-syntax-markup-changed-bg);
1068
+ }
1069
+
1070
+ .markdown-body .pl-mi2 {
1071
+ color: var(--color-prettylights-syntax-markup-ignored-text);
1072
+ background-color: var(--color-prettylights-syntax-markup-ignored-bg);
1073
+ }
1074
+
1075
+ .markdown-body .pl-mdr {
1076
+ font-weight: bold;
1077
+ color: var(--color-prettylights-syntax-meta-diff-range);
1078
+ }
1079
+
1080
+ .markdown-body .pl-ba {
1081
+ color: var(--color-prettylights-syntax-brackethighlighter-angle);
1082
+ }
1083
+
1084
+ .markdown-body .pl-sg {
1085
+ color: var(--color-prettylights-syntax-sublimelinter-gutter-mark);
1086
+ }
1087
+
1088
+ .markdown-body .pl-corl {
1089
+ text-decoration: underline;
1090
+ color: var(--color-prettylights-syntax-constant-other-reference-link);
1091
+ }
1092
+
1093
+ .markdown-body [role=button]:focus:not(:focus-visible),
1094
+ .markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),
1095
+ .markdown-body button:focus:not(:focus-visible),
1096
+ .markdown-body summary:focus:not(:focus-visible),
1097
+ .markdown-body a:focus:not(:focus-visible) {
1098
+ outline: none;
1099
+ box-shadow: none;
1100
+ }
1101
+
1102
+ .markdown-body [tabindex="0"]:focus:not(:focus-visible),
1103
+ .markdown-body details-dialog:focus:not(:focus-visible) {
1104
+ outline: none;
1105
+ }
1106
+
1107
+ .markdown-body g-emoji {
1108
+ display: inline-block;
1109
+ min-width: 1ch;
1110
+ font-family: "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
1111
+ font-size: 1em;
1112
+ font-style: normal !important;
1113
+ font-weight: var(--base-text-weight-normal, 400);
1114
+ line-height: 1;
1115
+ vertical-align: -0.075em;
1116
+ }
1117
+
1118
+ .markdown-body g-emoji img {
1119
+ width: 1em;
1120
+ height: 1em;
1121
+ }
1122
+
1123
+ .markdown-body .task-list-item {
1124
+ list-style-type: none;
1125
+ }
1126
+
1127
+ .markdown-body .task-list-item label {
1128
+ font-weight: var(--base-text-weight-normal, 400);
1129
+ }
1130
+
1131
+ .markdown-body .task-list-item.enabled label {
1132
+ cursor: pointer;
1133
+ }
1134
+
1135
+ .markdown-body .task-list-item+.task-list-item {
1136
+ margin-top: var(--base-size-4);
1137
+ }
1138
+
1139
+ .markdown-body .task-list-item .handle {
1140
+ display: none;
1141
+ }
1142
+
1143
+ .markdown-body .task-list-item-checkbox {
1144
+ margin: 0 .2em .25em -1.4em;
1145
+ vertical-align: middle;
1146
+ }
1147
+
1148
+ .markdown-body ul:dir(rtl) .task-list-item-checkbox {
1149
+ margin: 0 -1.6em .25em .2em;
1150
+ }
1151
+
1152
+ .markdown-body ol:dir(rtl) .task-list-item-checkbox {
1153
+ margin: 0 -1.6em .25em .2em;
1154
+ }
1155
+
1156
+ .markdown-body .contains-task-list:hover .task-list-item-convert-container,
1157
+ .markdown-body .contains-task-list:focus-within .task-list-item-convert-container {
1158
+ display: block;
1159
+ width: auto;
1160
+ height: 24px;
1161
+ overflow: visible;
1162
+ clip: auto;
1163
+ }
1164
+
1165
+ .markdown-body ::-webkit-calendar-picker-indicator {
1166
+ filter: invert(50%);
1167
+ }
1168
+
1169
+ .markdown-body .markdown-alert {
1170
+ padding: var(--base-size-8) var(--base-size-16);
1171
+ margin-bottom: var(--base-size-16);
1172
+ color: inherit;
1173
+ border-left: .25em solid var(--borderColor-default);
1174
+ }
1175
+
1176
+ .markdown-body .markdown-alert>:first-child {
1177
+ margin-top: 0;
1178
+ }
1179
+
1180
+ .markdown-body .markdown-alert>:last-child {
1181
+ margin-bottom: 0;
1182
+ }
1183
+
1184
+ .markdown-body .markdown-alert .markdown-alert-title {
1185
+ display: flex;
1186
+ font-weight: var(--base-text-weight-medium, 500);
1187
+ align-items: center;
1188
+ line-height: 1;
1189
+ }
1190
+
1191
+ .markdown-body .markdown-alert.markdown-alert-note {
1192
+ border-left-color: var(--borderColor-accent-emphasis);
1193
+ }
1194
+
1195
+ .markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title {
1196
+ color: var(--fgColor-accent);
1197
+ }
1198
+
1199
+ .markdown-body .markdown-alert.markdown-alert-important {
1200
+ border-left-color: var(--borderColor-done-emphasis);
1201
+ }
1202
+
1203
+ .markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title {
1204
+ color: var(--fgColor-done);
1205
+ }
1206
+
1207
+ .markdown-body .markdown-alert.markdown-alert-warning {
1208
+ border-left-color: var(--borderColor-attention-emphasis);
1209
+ }
1210
+
1211
+ .markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title {
1212
+ color: var(--fgColor-attention);
1213
+ }
1214
+
1215
+ .markdown-body .markdown-alert.markdown-alert-tip {
1216
+ border-left-color: var(--borderColor-success-emphasis);
1217
+ }
1218
+
1219
+ .markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title {
1220
+ color: var(--fgColor-success);
1221
+ }
1222
+
1223
+ .markdown-body .markdown-alert.markdown-alert-caution {
1224
+ border-left-color: var(--borderColor-danger-emphasis);
1225
+ }
1226
+
1227
+ .markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title {
1228
+ color: var(--fgColor-danger);
1229
+ }
1230
+
1231
+ .markdown-body>*:first-child>.heading-element:first-child {
1232
+ margin-top: 0 !important;
1233
+ }
1234
+
1235
+ .markdown-body .highlight pre:has(+zeroclipboard-container) {
1236
+ min-height: 52px;
1237
+ }
1238
+ `;
1239
+
1240
+ export { styles };