@techie_doubts/tui.editor.2026 3.2.2

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 (75) hide show
  1. package/README.md +176 -0
  2. package/dist/esm/i18n/ar.js +65 -0
  3. package/dist/esm/i18n/cs-cz.js +65 -0
  4. package/dist/esm/i18n/de-de.js +65 -0
  5. package/dist/esm/i18n/en-us.js +65 -0
  6. package/dist/esm/i18n/es-es.js +65 -0
  7. package/dist/esm/i18n/fi-fi.js +65 -0
  8. package/dist/esm/i18n/fr-fr.js +65 -0
  9. package/dist/esm/i18n/gl-es.js +65 -0
  10. package/dist/esm/i18n/hr-hr.js +65 -0
  11. package/dist/esm/i18n/i18n.js +116 -0
  12. package/dist/esm/i18n/it-it.js +65 -0
  13. package/dist/esm/i18n/ja-jp.js +65 -0
  14. package/dist/esm/i18n/ko-kr.js +65 -0
  15. package/dist/esm/i18n/nb-no.js +65 -0
  16. package/dist/esm/i18n/nl-nl.js +65 -0
  17. package/dist/esm/i18n/pl-pl.js +65 -0
  18. package/dist/esm/i18n/pt-br.js +65 -0
  19. package/dist/esm/i18n/ru-ru.js +66 -0
  20. package/dist/esm/i18n/sv-se.js +65 -0
  21. package/dist/esm/i18n/tr-tr.js +65 -0
  22. package/dist/esm/i18n/uk-ua.js +65 -0
  23. package/dist/esm/i18n/zh-cn.js +65 -0
  24. package/dist/esm/i18n/zh-tw.js +65 -0
  25. package/dist/esm/index.js +28323 -0
  26. package/dist/esm/indexViewer.js +12432 -0
  27. package/dist/i18n/ar.js +161 -0
  28. package/dist/i18n/cs-cz.js +161 -0
  29. package/dist/i18n/de-de.js +161 -0
  30. package/dist/i18n/es-es.js +161 -0
  31. package/dist/i18n/fi-fi.js +161 -0
  32. package/dist/i18n/fr-fr.js +161 -0
  33. package/dist/i18n/gl-es.js +161 -0
  34. package/dist/i18n/hr-hr.js +161 -0
  35. package/dist/i18n/it-it.js +161 -0
  36. package/dist/i18n/ja-jp.js +161 -0
  37. package/dist/i18n/ko-kr.js +161 -0
  38. package/dist/i18n/nb-no.js +161 -0
  39. package/dist/i18n/nl-nl.js +161 -0
  40. package/dist/i18n/pl-pl.js +161 -0
  41. package/dist/i18n/pt-br.js +161 -0
  42. package/dist/i18n/ru-ru.js +162 -0
  43. package/dist/i18n/sv-se.js +161 -0
  44. package/dist/i18n/tr-tr.js +161 -0
  45. package/dist/i18n/uk-ua.js +161 -0
  46. package/dist/i18n/zh-cn.js +161 -0
  47. package/dist/i18n/zh-tw.js +161 -0
  48. package/dist/td-editor-only.css +1148 -0
  49. package/dist/td-editor-viewer.css +591 -0
  50. package/dist/td-editor-viewer.js +13712 -0
  51. package/dist/td-editor.css +1777 -0
  52. package/dist/td-editor.js +29832 -0
  53. package/dist/theme/td-editor-dark.css +555 -0
  54. package/dist/theme/toastui-editor-dark.css +555 -0
  55. package/dist/toastui-editor-only.css +1148 -0
  56. package/dist/toastui-editor-viewer.css +591 -0
  57. package/dist/toastui-editor-viewer.js +13712 -0
  58. package/dist/toastui-editor.css +1777 -0
  59. package/dist/toastui-editor.js +29832 -0
  60. package/package.json +97 -0
  61. package/types/convertor.d.ts +142 -0
  62. package/types/editor.d.ts +383 -0
  63. package/types/event.d.ts +60 -0
  64. package/types/index.d.ts +70 -0
  65. package/types/map.d.ts +8 -0
  66. package/types/markdown.d.ts +60 -0
  67. package/types/plugin.d.ts +59 -0
  68. package/types/prosemirror-commands.d.ts +15 -0
  69. package/types/prosemirror-model.d.ts +15 -0
  70. package/types/prosemirror-transform.d.ts +35 -0
  71. package/types/spec.d.ts +43 -0
  72. package/types/toastmark.d.ts +361 -0
  73. package/types/toastui-editor-viewer.d.ts +39 -0
  74. package/types/ui.d.ts +171 -0
  75. package/types/wysiwyg.d.ts +46 -0
@@ -0,0 +1,555 @@
1
+ @charset "utf-8";
2
+ .toastui-editor-dark.toastui-editor-defaultUI {
3
+ border-color: #494c56;
4
+ color: #eee;
5
+ }
6
+
7
+ .toastui-editor-dark .toastui-editor-md-container,
8
+ .toastui-editor-dark .toastui-editor-ww-container {
9
+ background-color: #121212;
10
+ }
11
+
12
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar {
13
+ background-color: #232428;
14
+ border-bottom-color: #303238;
15
+ }
16
+
17
+ .toastui-editor-dark .toastui-editor-toolbar-icons {
18
+ background-position-y: -49px;
19
+ border-color: #232428;
20
+ }
21
+
22
+ .toastui-editor-dark .toastui-editor-toolbar-icons.mark {
23
+ color: #eee;
24
+ }
25
+
26
+ .toastui-editor-dark .toastui-editor-toolbar-icons.superscript,
27
+ .toastui-editor-dark .toastui-editor-toolbar-icons.subscript,
28
+ .toastui-editor-dark .toastui-editor-toolbar-icons.underline {
29
+ color: #eee;
30
+ }
31
+
32
+ .toastui-editor-dark .toastui-editor-toolbar-icons.mark.active,
33
+ .toastui-editor-dark .toastui-editor-toolbar-icons.superscript.active,
34
+ .toastui-editor-dark .toastui-editor-toolbar-icons.subscript.active,
35
+ .toastui-editor-dark .toastui-editor-toolbar-icons.underline.active {
36
+ color: #00a9ff;
37
+ }
38
+
39
+ .toastui-editor-dark .toastui-editor-toolbar-icons:not(:disabled):hover {
40
+ background-color: #36383f;
41
+ border-color: #36383f;
42
+ }
43
+
44
+ .toastui-editor-dark .toastui-editor-toolbar-divider {
45
+ background-color: #303238;
46
+ }
47
+
48
+ .toastui-editor-dark .toastui-editor-tooltip {
49
+ background-color: #535662;
50
+ }
51
+
52
+ .toastui-editor-dark .toastui-editor-tooltip .arrow {
53
+ background-color: #535662;
54
+ }
55
+
56
+ .toastui-editor-dark .toastui-inline-latex-tooltip {
57
+ background-color: #1f1f1f !important;
58
+ border: 1px solid rgba(255, 255, 255, 0.16) !important;
59
+ box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45) !important;
60
+ color: #f1f3f5 !important;
61
+ }
62
+
63
+ .toastui-editor-dark .toastui-inline-latex-tooltip .katex {
64
+ color: inherit;
65
+ }
66
+
67
+ .toastui-editor-dark .toastui-block-latex-preview {
68
+ background-color: #1f1f1f !important;
69
+ border: 1px solid rgba(255, 255, 255, 0.12) !important;
70
+ box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
71
+ color: #f1f3f5 !important;
72
+ }
73
+
74
+ .toastui-editor-dark .toastui-block-latex-preview .katex {
75
+ color: inherit;
76
+ }
77
+
78
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar .scroll-sync::before {
79
+ color: #8f939f;
80
+ }
81
+
82
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar .scroll-sync.active::before {
83
+ color: #67ccff;
84
+ }
85
+
86
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar .switch {
87
+ background-color: #2b4455;
88
+ }
89
+
90
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar input:checked + .switch {
91
+ background-color: #2b4455;
92
+ }
93
+
94
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar .switch::before {
95
+ background-color: #8f939f;
96
+ }
97
+
98
+ .toastui-editor-dark .toastui-editor-defaultUI-toolbar input:checked + .switch::before {
99
+ background-color: #67ccff;
100
+ }
101
+
102
+ .toastui-editor-dark .toastui-editor-main .toastui-editor-md-splitter {
103
+ background-color: #303238;
104
+ }
105
+
106
+ .toastui-editor-dark .toastui-editor-mode-switch {
107
+ border-top-color: #393b42;
108
+ background-color: #121212;
109
+ }
110
+
111
+ .toastui-editor-dark .toastui-editor-mode-switch .tab-item {
112
+ border-color: #393b42;
113
+ background-color: #232428;
114
+ color: #757a86;
115
+ }
116
+
117
+ .toastui-editor-dark .toastui-editor-mode-switch .tab-item.active {
118
+ border-top-color: #121212;
119
+ background-color: #121212;
120
+ color: #eee;
121
+ }
122
+
123
+ .toastui-editor-dark .toastui-editor-popup,
124
+ .toastui-editor-dark .toastui-editor-context-menu {
125
+ background-color: #121212;
126
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
127
+ border-color: #494c56;
128
+ }
129
+
130
+ .toastui-editor-dark .toastui-editor-popup-add-heading ul li:hover {
131
+ background-color: #36383f;
132
+ }
133
+
134
+ .toastui-editor-dark .toastui-editor-popup-body label {
135
+ color: #9a9da3;
136
+ }
137
+
138
+ .toastui-editor-dark .toastui-editor-popup-body input[type='text'] {
139
+ background-color: transparent;
140
+ color: #eee;
141
+ border-color: #303238;
142
+ }
143
+
144
+ .toastui-editor-dark .toastui-editor-popup-body input[type='text']:focus {
145
+ outline-color: #67ccff;
146
+ }
147
+
148
+ .toastui-editor-dark .toastui-editor-popup-body input[type='text'].disabled {
149
+ color: #969aa5;
150
+ border-color: #303238;
151
+ background-color: rgba(48, 50, 56, 0.4);
152
+ }
153
+
154
+ .toastui-editor-dark .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item {
155
+ border-bottom-color: #292e37;
156
+ color: #eee;
157
+ }
158
+
159
+ .toastui-editor-dark .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item:hover {
160
+ border-bottom-color: #3c424d;
161
+ }
162
+
163
+ .toastui-editor-dark .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item.active {
164
+ color: #67ccff;
165
+ border-bottom-color: #67ccff;
166
+ }
167
+
168
+ .toastui-editor-dark .toastui-editor-popup-body .toastui-editor-file-name {
169
+ border-color: #303238;
170
+ color: #eee;
171
+ }
172
+
173
+ .toastui-editor-dark .toastui-editor-popup-body .toastui-editor-file-select-button {
174
+ border-color: #303238;
175
+ background-color: #232428;
176
+ color: #eee;
177
+ }
178
+
179
+ .toastui-editor-dark .toastui-editor-popup-body .toastui-editor-file-select-button:hover {
180
+ border-color: #494c56;
181
+ }
182
+
183
+ .toastui-editor-dark.toastui-editor-defaultUI .toastui-editor-close-button {
184
+ color: #eee;
185
+ border-color: #303238;
186
+ background-color: #232428;
187
+ }
188
+
189
+ .toastui-editor-dark.toastui-editor-defaultUI .toastui-editor-close-button:hover {
190
+ border-color: #494c56;
191
+ }
192
+
193
+ .toastui-editor-dark.toastui-editor-defaultUI .toastui-editor-ok-button {
194
+ color: #121212;
195
+ background-color: #67ccff;
196
+ }
197
+
198
+ .toastui-editor-dark.toastui-editor-defaultUI .toastui-editor-ok-button:hover {
199
+ color: #121212;
200
+ background-color: #32baff;
201
+ }
202
+
203
+ .toastui-editor-dark .toastui-editor-popup-add-table .toastui-editor-table-cell {
204
+ border-color: #303238;
205
+ background-color: #121212;
206
+ }
207
+
208
+ .toastui-editor-dark .toastui-editor-popup-add-table .toastui-editor-table-cell.header {
209
+ border-color: #303238;
210
+ background-color: #232428;
211
+ }
212
+
213
+ .toastui-editor-dark .toastui-editor-popup-add-table .toastui-editor-table-selection-layer {
214
+ border-color: rgba(103, 204, 255, 0.4);
215
+ background-color: rgba(103, 204, 255, 0.1);
216
+ }
217
+
218
+ .toastui-editor-dark .toastui-editor-popup-add-table .toastui-editor-table-description {
219
+ color: #eee;
220
+ }
221
+
222
+ .toastui-editor-dark .toastui-editor-md-tab-container {
223
+ background-color: #232428;
224
+ border-bottom-color: #303238;
225
+ }
226
+
227
+ .toastui-editor-dark .toastui-editor-md-tab-container .tab-item {
228
+ border-color: #393b42;
229
+ background-color: #2d2f34;
230
+ color: #757a86;
231
+ }
232
+
233
+ .toastui-editor-dark .toastui-editor-md-tab-container .tab-item.active {
234
+ border-bottom-color: #121212;
235
+ background-color: #121212;
236
+ color: #eee;
237
+ }
238
+
239
+ .toastui-editor-dark .toastui-editor-context-menu .menu-group {
240
+ border-bottom-color: #303238;
241
+ color: #eee;
242
+ }
243
+
244
+ .toastui-editor-dark .toastui-editor-context-menu .menu-item span::before {
245
+ background-position-y: -126px;
246
+ }
247
+
248
+ .toastui-editor-dark .toastui-editor-context-menu li:not(.disabled):hover {
249
+ background-color: #36383f;
250
+ }
251
+
252
+ .toastui-editor-dark .toastui-editor-context-menu li.disabled {
253
+ color: #969aa5;
254
+ }
255
+
256
+ .toastui-editor-dark .toastui-editor-dropdown-toolbar {
257
+ border-color: #494c56;
258
+ background-color: #232428;
259
+ }
260
+
261
+ .toastui-editor-dark .ProseMirror,
262
+ .toastui-editor-dark .toastui-editor-contents p,
263
+ .toastui-editor-dark .toastui-editor-contents h1,
264
+ .toastui-editor-dark .toastui-editor-contents h2,
265
+ .toastui-editor-dark .toastui-editor-contents h3,
266
+ .toastui-editor-dark .toastui-editor-contents h4,
267
+ .toastui-editor-dark .toastui-editor-contents h5,
268
+ .toastui-editor-dark .toastui-editor-contents h6 {
269
+ color: #fff;
270
+ }
271
+
272
+ .toastui-editor-dark .toastui-editor-contents h1,
273
+ .toastui-editor-dark .toastui-editor-contents h2 {
274
+ border-color: #fff;
275
+ }
276
+
277
+ .toastui-editor-dark .toastui-editor-contents del {
278
+ color: #777980;
279
+ }
280
+
281
+ .toastui-editor-dark .toastui-editor-contents mark {
282
+ background-color: #5c4b00;
283
+ color: #f8f9fa;
284
+ }
285
+
286
+ .toastui-editor-dark .toastui-editor-contents blockquote {
287
+ border-color: #303135;
288
+ }
289
+
290
+ .toastui-editor-dark .toastui-editor-contents blockquote p,
291
+ .toastui-editor-dark .toastui-editor-contents blockquote ul,
292
+ .toastui-editor-dark .toastui-editor-contents blockquote ol {
293
+ color: #777980;
294
+ }
295
+
296
+ .toastui-editor-dark .toastui-editor-contents pre {
297
+ background-color: #232428;
298
+ }
299
+
300
+ .toastui-editor-dark .toastui-editor-contents pre code {
301
+ background-color: transparent;
302
+ color: #fff;
303
+ }
304
+
305
+ .toastui-editor-dark .toastui-editor-contents code {
306
+ color: #c1798b;
307
+ background-color: #35262a;
308
+ }
309
+
310
+ .toastui-editor-dark .toastui-editor-contents div {
311
+ color: #fff;
312
+ }
313
+
314
+ .toastui-editor-dark .toastui-editor-ww-code-block-language {
315
+ border-color: #303238;
316
+ background-color: #121212;
317
+ }
318
+
319
+ .toastui-editor-dark .toastui-editor-ww-code-block-label {
320
+ color: #aaa;
321
+ }
322
+
323
+ .toastui-editor-dark .toastui-editor-ww-code-block-lang-input,
324
+ .toastui-editor-dark .toastui-editor-ww-code-block-line-input {
325
+ color: #fff;
326
+ border-color: #393b42;
327
+ background-color: #232428;
328
+ }
329
+
330
+ .toastui-editor-dark .toastui-editor-ww-code-block-lang-input:focus,
331
+ .toastui-editor-dark .toastui-editor-ww-code-block-line-input:focus {
332
+ border-color: #4b96e6;
333
+ }
334
+
335
+ .toastui-editor-dark .toastui-editor-ww-code-block-gutter {
336
+ color: #555;
337
+ background: #1a1b1e;
338
+ border-right-color: #393b42;
339
+ }
340
+
341
+ .toastui-editor-dark .toastui-editor-contents pre.line-numbers::before {
342
+ color: #555;
343
+ background: #1a1b1e;
344
+ border-right-color: #393b42;
345
+ }
346
+
347
+ .toastui-editor-dark .toastui-editor-contents .toastui-editor-ww-code-block:after {
348
+ background-color: #232428;
349
+ border: 1px solid #393b42;
350
+ color: #eee;
351
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuugiOydtOyWtF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwIDMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6I2ZmZjt9Cjwvc3R5bGU+CjxnPgoJPGc+CgkJPGc+CgkJCTxnPgoJCQkJPGc+CgkJCQkJPHBhdGggY2xhc3M9InN0MCIgZD0iTTE1LjUsMTIuNWwyLDJMMTIsMjBoLTJ2LTJMMTUuNSwxMi41eiBNMTgsMTBsMiwybC0xLjUsMS41bC0yLTJMMTgsMTB6Ii8+CgkJCQk8L2c+CgkJCTwvZz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==');
352
+ }
353
+
354
+ .toastui-editor-dark .toastui-editor-contents .toastui-editor-custom-block-editor {
355
+ background: #392d31;
356
+ color: #fff;
357
+ border-color: #327491;
358
+ }
359
+
360
+ .toastui-editor-dark
361
+ .toastui-editor-custom-block.ProseMirror-selectednode
362
+ .toastui-editor-custom-block-view {
363
+ color: #fff;
364
+ border-color: #327491;
365
+ }
366
+
367
+ .toastui-editor-dark .toastui-editor-custom-block-view button {
368
+ background-color: #232428;
369
+ border-color: #393b42;
370
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuugiOydtOyWtF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwIDMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6I2ZmZjt9Cjwvc3R5bGU+CjxnPgoJPGc+CgkJPGc+CgkJCTxnPgoJCQkJPGc+CgkJCQkJPHBhdGggY2xhc3M9InN0MCIgZD0iTTE1LjUsMTIuNWwyLDJMMTIsMjBoLTJ2LTJMMTUuNSwxMi41eiBNMTgsMTBsMiwybC0xLjUsMS41bC0yLTJMMTgsMTB6Ii8+CgkJCQk8L2c+CgkJCTwvZz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==');
371
+ }
372
+
373
+ .toastui-editor-dark .toastui-editor-custom-block-view button:hover {
374
+ background-color: #232428;
375
+ border-color: #595c68;
376
+ }
377
+
378
+ .toastui-editor-dark .toastui-editor-custom-block-view .info {
379
+ color: #65acca;
380
+ }
381
+
382
+ .toastui-editor-dark .toastui-editor-contents table {
383
+ border-color: #303238;
384
+ }
385
+
386
+ .toastui-editor-dark .toastui-editor-contents table th,
387
+ .toastui-editor-dark .toastui-editor-contents table td {
388
+ border-color: #303238;
389
+ }
390
+
391
+ .toastui-editor-dark .toastui-editor-contents table th {
392
+ background-color: #3a3c42;
393
+ }
394
+
395
+ .toastui-editor-dark .toastui-editor-contents table td,
396
+ .toastui-editor-dark .toastui-editor-contents table td p {
397
+ color: #fff;
398
+ }
399
+
400
+ .toastui-editor-dark .toastui-editor-contents td.toastui-editor-cell-selected {
401
+ background-color: rgba(103, 204, 255, 0.5);
402
+ }
403
+
404
+ .toastui-editor-dark .toastui-editor-contents th.toastui-editor-cell-selected {
405
+ background-color: rgba(103, 204, 255, 0.3);
406
+ }
407
+
408
+ .toastui-editor-dark table.ProseMirror-selectednode {
409
+ outline-color: #67ccff;
410
+ }
411
+
412
+ .toastui-editor-dark .html-block.ProseMirror-selectednode {
413
+ outline-color: #67ccff;
414
+ }
415
+
416
+ .toastui-editor-dark .toastui-editor-contents ul,
417
+ .toastui-editor-dark .toastui-editor-contents menu,
418
+ .toastui-editor-dark .toastui-editor-contents ol,
419
+ .toastui-editor-dark .toastui-editor-contents dir {
420
+ color: #55575f;
421
+ }
422
+
423
+ .toastui-editor-dark .toastui-editor-contents ul > li::before {
424
+ background-color: #55575f;
425
+ }
426
+
427
+ .toastui-editor-dark .toastui-editor-contents hr {
428
+ border-color: #55575f;
429
+ }
430
+
431
+ .toastui-editor-dark .toastui-editor-contents a {
432
+ color: #4b96e6;
433
+ }
434
+
435
+ .toastui-editor-dark .toastui-editor-contents a:hover {
436
+ color: #1f70de;
437
+ }
438
+
439
+ .toastui-editor-dark .toastui-editor-contents .image-link:hover::before {
440
+ border-color: #393b42;
441
+ background-color: #232428;
442
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj4KICAgICAgICA8ZyBzdHJva2U9IiNFRUUiIHN0cm9rZS13aWR0aD0iMS41Ij4KICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICA8Zz4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNy42NjUgMTUuMDdsLTEuODE5LS4wMDJjLTEuNDg2IDAtMi42OTItMS4yMjgtMi42OTItMi43NDR2LS4xOTJjMC0xLjUxNSAxLjIwNi0yLjc0NCAyLjY5Mi0yLjc0NGgzLjg0NmMxLjQ4NyAwIDIuNjkyIDEuMjI5IDIuNjkyIDIuNzQ0di4xOTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDQ1IC0xNzQzKSB0cmFuc2xhdGUoMTA0MCAxNzM4KSB0cmFuc2xhdGUoNSA1KSBzY2FsZSgxIC0xKSByb3RhdGUoNDUgMzcuMjkzIDApIi8+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTEyLjMyNiA0LjkzNGwxLjgyMi4wMDJjMS40ODcgMCAyLjY5MyAxLjIyOCAyLjY5MyAyLjc0NHYuMTkyYzAgMS41MTUtMS4yMDYgMi43NDQtMi42OTMgMi43NDRoLTMuODQ1Yy0xLjQ4NyAwLTIuNjkyLTEuMjI5LTIuNjkyLTIuNzQ0VjcuNjgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDQ1IC0xNzQzKSB0cmFuc2xhdGUoMTA0MCAxNzM4KSB0cmFuc2xhdGUoNSA1KSBzY2FsZSgxIC0xKSByb3RhdGUoNDUgMzAuOTk2IDApIi8+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=');
443
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
444
+ }
445
+
446
+ .toastui-editor-dark .toastui-editor-contents .task-list-item::before {
447
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgc3Ryb2tlPSIjNTU1NzVGIj4KICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTAzMCAtMzE2KSB0cmFuc2xhdGUoNzg4IDE5MikgdHJhbnNsYXRlKDI0MiAxMjQpIj4KICAgICAgICAgICAgICAgICAgICA8cmVjdCB3aWR0aD0iMTciIGhlaWdodD0iMTciIHg9Ii41IiB5PSIuNSIgcng9IjIiLz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg==');
448
+ background-color: transparent;
449
+ }
450
+
451
+ .toastui-editor-dark .toastui-editor-contents .task-list-item.checked::before {
452
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgZmlsbD0iIzRCOTZFNiI+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTE2IDBjMS4xMDUgMCAyIC44OTUgMiAydjE0YzAgMS4xMDUtLjg5NSAyLTIgMkgyYy0xLjEwNSAwLTItLjg5NS0yLTJWMkMwIC44OTUuODk1IDAgMiAwaDE0em0tMS43OTMgNS4yOTNjLS4zOS0uMzktMS4wMjQtLjM5LTEuNDE0IDBMNy41IDEwLjU4NSA1LjIwNyA4LjI5M2wtLjA5NC0uMDgzYy0uMzkyLS4zMDUtLjk2LS4yNzgtMS4zMi4wODMtLjM5LjM5LS4zOSAxLjAyNCAwIDEuNDE0bDMgMyAuMDk0LjA4M2MuMzkyLjMwNS45Ni4yNzggMS4zMi0uMDgzbDYtNiAuMDgzLS4wOTRjLjMwNS0uMzkyLjI3OC0uOTYtLjA4My0xLjMyeiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwNTAgLTI5NikgdHJhbnNsYXRlKDc4OCAxOTIpIHRyYW5zbGF0ZSgyNjIgMTA0KSIvPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K');
453
+ }
454
+
455
+ .toastui-editor-dark .toastui-editor-md-delimiter,
456
+ .toastui-editor-dark .toastui-editor-md-code.toastui-editor-md-delimiter,
457
+ .toastui-editor-dark .toastui-editor-md-thematic-break,
458
+ .toastui-editor-dark .toastui-editor-md-link,
459
+ .toastui-editor-dark .toastui-editor-md-table,
460
+ .toastui-editor-dark .toastui-editor-md-block-quote {
461
+ color: #55575f;
462
+ }
463
+
464
+ .toastui-editor-dark .toastui-editor-md-meta,
465
+ .toastui-editor-dark .toastui-editor-md-html {
466
+ color: #55575f;
467
+ }
468
+
469
+ .toastui-editor-dark
470
+ .toastui-editor-md-link.toastui-editor-md-link-url.toastui-editor-md-marked-text {
471
+ color: #777980;
472
+ }
473
+
474
+ .toastui-editor-dark .toastui-editor-md-block-quote .toastui-editor-md-marked-text,
475
+ .toastui-editor-dark .toastui-editor-md-list-item .toastui-editor-md-meta {
476
+ color: #b3b5bc;
477
+ }
478
+
479
+ .toastui-editor-dark
480
+ .toastui-editor-md-link.toastui-editor-md-link-desc.toastui-editor-md-marked-text,
481
+ .toastui-editor-dark .toastui-editor-md-list-item-style.toastui-editor-md-list-item-odd {
482
+ color: #4b96e6;
483
+ }
484
+
485
+ .toastui-editor-dark .toastui-editor-md-list-item-style.toastui-editor-md-list-item-even {
486
+ color: #ef6767;
487
+ }
488
+
489
+ .toastui-editor-dark .toastui-editor-md-table .toastui-editor-md-table-cell {
490
+ color: #fff;
491
+ }
492
+
493
+ .toastui-editor-dark .toastui-editor-md-code.toastui-editor-md-marked-text {
494
+ color: #c1798b;
495
+ }
496
+
497
+ .toastui-editor-dark .toastui-editor-md-mark {
498
+ background-color: #5c4b00;
499
+ color: #f8f9fa;
500
+ }
501
+
502
+ .toastui-editor-dark .toastui-editor-md-mark.toastui-editor-md-delimiter {
503
+ background-color: transparent;
504
+ color: #777980;
505
+ }
506
+
507
+ .toastui-editor-dark .toastui-editor-md-code {
508
+ background-color: #35262a;
509
+ }
510
+
511
+ .toastui-editor-dark .toastui-editor-md-code-block-line-background {
512
+ background-color: #232428;
513
+ }
514
+
515
+ .toastui-editor-dark .toastui-editor-md-code-block .toastui-editor-md-meta {
516
+ color: #aaa;
517
+ }
518
+
519
+ .toastui-editor-dark .toastui-editor-md-custom-block {
520
+ color: #fff;
521
+ }
522
+
523
+ .toastui-editor-dark .toastui-editor-md-custom-block-line-background {
524
+ background-color: #392d31;
525
+ }
526
+
527
+ .toastui-editor-dark .toastui-editor-md-custom-block .toastui-editor-md-delimiter {
528
+ color: #327491;
529
+ }
530
+
531
+ .toastui-editor-dark .toastui-editor-md-custom-block .toastui-editor-md-meta {
532
+ color: #65acca;
533
+ }
534
+
535
+ .toastui-editor-dark .toastui-editor-contents .toastui-editor-md-preview-highlight::after {
536
+ background-color: rgba(255, 250, 193, 0.5);
537
+ }
538
+
539
+ .toastui-editor-dark .toastui-editor-contents th.toastui-editor-md-preview-highlight,
540
+ .toastui-editor-dark .toastui-editor-contents td.toastui-editor-md-preview-highlight {
541
+ background-color: rgba(255, 250, 193, 0.5);
542
+ }
543
+
544
+ .toastui-editor-dark .toastui-editor-contents th.toastui-editor-md-preview-highlight {
545
+ color: #fff;
546
+ }
547
+
548
+ .toastui-editor-dark .toastui-editor-contents th.toastui-editor-md-preview-highlight,
549
+ .toastui-editor-dark .toastui-editor-contents td.toastui-editor-md-preview-highlight {
550
+ background-color: rgba(255, 250, 193, 0.25);
551
+ }
552
+
553
+ .toastui-editor-dark .toastui-editor-contents .toastui-editor-md-preview-highlight::after {
554
+ background-color: rgba(255, 250, 193, 0.25);
555
+ }