-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
8575 lines (8471 loc) · 514 KB
/
theme.css
File metadata and controls
8575 lines (8471 loc) · 514 KB
1
2
3
4
5
6
7
8
9
10
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@charset "UTF-8";
* {
box-sizing: border-box;
}
body:is(.theme-light, .theme-dark) {
--font-default:
"Hiragino Sans GB", "Segoe UI", "Microsoft YaHei", "Helvetica Neue", "WenQuanYi Micro Hei", "Helvetica", "Arial",
sans-serif;
--font-monospace-default: iawriter-mono, Nitti, Menlo, Courier, monospace;
--font-monospace: var(--font-monospace-default);
--font-text: var(--font-default);
--font-tag: var(--font-monospace);
--font-file-tree: var(--font-default);
--font-source-view: var(--font-monospace);
--font-vault-name: var(--font-file-tree);
--font-interface-override: "";
--font-tag-size: 1em;
--font-latex-size: 1em;
--font-monospace-size: 1em;
--font-file-tree-size: 0.95em;
--font-vault-name-size: 1.25em;
--font-source-view-size: 1em;
--font-text-weight: 400;
--font-tag-weight: 400;
--font-latex-weight: 400;
--font-monospace-weight: 400;
--font-file-tree-weight: 400;
--font-vault-name-weight: 400;
--font-source-view-weight: 400;
--font-header: var(--font-text);
--font-h1-size: 2.25em;
--font-h2-size: 1.875em;
--font-h3-size: 1.5em;
--font-h4-size: 1.25em;
--font-h5-size: 1.125em;
--font-h6-size: 1em;
--font-h1-weight: normal;
--font-h2-weight: var(--font-h1-weight);
--font-h3-weight: var(--font-h1-weight);
--font-h4-weight: var(--font-h1-weight);
--font-h5-weight: var(--font-h1-weight);
--font-h6-weight: var(--font-h1-weight);
--h1-color: var(--color-default-h1);
--h2-color: var(--color-default-h2);
--h3-color: var(--color-default-h3);
--h4-color: var(--color-default-h4);
--h5-color: var(--color-default-h5);
--h6-color: var(--color-default-h6);
--color-default-h1: var(--text-normal);
--color-default-h2: var(--text-normal);
--color-default-h3: var(--text-normal);
--color-default-h4: var(--text-normal);
--color-default-h5: var(--text-normal);
--color-default-h6: var(--text-normal);
--color-accent-h1: hsl(var(--color-h), var(--color-s), var(--color-l));
--color-accent-h2: hsl(var(--color-h), var(--color-s), var(--color-l));
--color-accent-h3: hsl(var(--color-h), var(--color-s), var(--color-l));
--color-accent-h4: hsl(var(--color-h), var(--color-s), var(--color-l));
--color-accent-h5: hsl(var(--color-h), var(--color-s), var(--color-l));
--color-accent-h6: hsl(var(--color-h), var(--color-s), var(--color-l));
--color-gradient-h1: hsla(var(--color-h), var(--color-s), var(--color-l), 1);
--color-gradient-h2: hsla(var(--color-h), var(--color-s), var(--color-l), 0.95);
--color-gradient-h3: hsla(var(--color-h), var(--color-s), var(--color-l), 0.9);
--color-gradient-h4: hsla(var(--color-h), var(--color-s), var(--color-l), 0.85);
--color-gradient-h5: hsla(var(--color-h), var(--color-s), var(--color-l), 0.8);
--color-gradient-h6: hsla(var(--color-h), var(--color-s), var(--color-l), 0.75);
--font-strong-size: 1em;
--font-strong-weight: 900;
--font-strong-style: normal;
--font-strong-color: var(--text-strong);
--font-strong-decoration-line: none;
--font-strong-decoration-width: 1px;
--font-strong-decoration-style: solid;
--font-strong-decoration-color: var(--font-strong-color);
--font-strong-decoration-offset: 2px;
--font-em-size: 1em;
--font-em-weight: normal;
--font-em-style: italic;
--font-em-color: var(--text-normal);
--font-em-decoration-line: none;
--font-em-decoration-width: 1px;
--font-em-decoration-style: solid;
--font-em-decoration-color: var(--font-em-color);
--font-em-decoration-offset: 2px;
--font-highlight-size: 1em;
--font-highlight-weight: normal;
--font-highlight-style: normal;
--font-highlight-color: var(--text-reversed);
--font-highlight-bg-color: var(--color-accent);
--font-highlight-decoration-width: 2px;
--font-highlight-decoration-style: solid;
--font-highlight-decoration-line: none;
--font-highlight-decoration-color: var(--text-normal);
--font-highlight-decoration-offset: 3px;
--font-strikethrough-size: 1em;
--font-strikethrough-weight: normal;
--font-strikethrough-style: normal;
--font-strikethrough-color: var(--text-muted);
--font-strikethrough-decoration-line: line-through;
--font-strikethrough-decoration-width: 2px;
--font-strikethrough-decoration-style: solid;
--font-strikethrough-decoration-color: var(--font-strikethrough-color);
--font-underlined-size: 1em;
--font-underlined-weight: normal;
--font-underlined-color: var(--text-normal);
--font-underlined-decoration-line: underline;
--font-underlined-decoration-width: 2px;
--font-underlined-decoration-style: wavy;
--font-underlined-decoration-color: var(--font-underlined-color);
--font-underlined-decoration-offset: 6px;
--font-inline-title: var(--font-header);
--font-inline-title-size: 2em;
--font-inline-title-weight: 900;
--link-unresolved-color: var(--color-accent-o90);
--link-unresolved-color-hover: var(--color-accent);
--link-external-color: var(--color-accent-ln5);
--link-external-color-hover: var(--color-accent-ln5);
--link-color: var(--color-accent-ln5);
--link-color-hover: var(--color-accent-ln5);
--font-inline-tile-color: var(--text-normal);
--text-accent-hover: var(--text-strong);
--link-decoration-line: underline;
--link-decoration-thickness: 1px;
--link-decoration-style: solid;
--link-decoration-color: var(--link-color);
--link-decoration-offset: 0.3em;
--link-unresolved-decoration-line: underline;
--link-unresolved-decoration-width: 1px;
--link-unresolved-decoration-style: dashed;
--link-unresolved-decoration-color: hsla(var(--link-unresolved-color), 0.3);
--link-unresolved-decoration-offset: 0.3em;
--link-unresolved-decoration-color-hover: hsla(var(--link-unresolved-color-hover), 0.3);
--checkbox-checked-color: hsla(var(--color-h), var(--color-s), var(--color-l));
--checkbox-border-color: var(--color-base-70);
--checkbox-color-hover: hsla(0, 0%, 73%, 0.5);
--checkbox-unchecked-color-hover: hsla(var(--color-h), var(--color-s), calc(var(--color-l)), 0.5);
--checkbox-color: #22c55e;
--checklist-decoration-color: var(--text-normal);
--checklist-decoration-line: none;
--checklist-done-decoration-color: var(--text-muted);
--checklist-done-decoration-line: none;
--checklist-delete-decoration-color: var(--background-modifier-error);
--checklist-delete-decoration-line: line-through;
--tag-radius: 0em;
--blockquote-border-thickness: 2px;
--callout-dogs-ear-size: 2em;
--tab-curve: 6px;
--icon-color-focused: var(--color-accent-o80);
--icon-color-hovering: var(--text-strong);
--color-bw-h: 0;
--color-bw-s: 0%;
--color-sage-h: 88;
--color-sage-s: 23%;
--color-sage-l: 69%;
--color-sage-main: hsl(var(--color-sage-h), var(--color-sage-s), var(--color-sage-l));
--color-blue-h: 207;
--color-blue-s: 47%;
--color-blue-l: 73%;
--color-blue-main: hsl(var(--color-blue-h), var(--color-blue-s), var(--color-blue-l));
--color-peach-h: 0;
--color-peach-s: 37%;
--color-peach-l: 65%;
--color-peach-main: hsl(var(--color-peach-h), var(--color-peach-s), var(--color-peach-l));
--color-beige-h: 50;
--color-beige-s: 100%;
--color-beige-l: 91%;
--color-beige-main: hsl(var(--color-beige-h), var(--color-beige-s), var(--color-beige-l));
--color-pink-h: 0;
--color-pink-s: 100%;
--color-pink-l: 91%;
--color-pink-main: hsl(var(--color-pink-h), var(--color-pink-s), var(--color-pink-l));
--color-purple-h: 269;
--color-purple-s: 59%;
--color-purple-l: 85%;
--color-purple-main: hsl(var(--color-purple-h), var(--color-purple-s), var(--color-purple-l));
--accent-color-light-hue-default: 254;
--accent-color-light-saturation-default: 80%;
--accent-color-light-lightness-default: 68%;
--accent-color-dark-hue-default: 254;
--accent-color-dark-saturation-default: 80%;
--accent-color-dark-lightness-default: 68%;
--accent-h: var(--color-h);
--accent-s: var(--color-s);
--accent-l: var(--color-l);
--color-main: hsl(var(--color-h), var(--color-s), var(--color-l));
--color-accent: var(--color-main);
--color-accent-1: var(--color-main);
--color-accent-ln5: hsl(var(--color-h), var(--color-s), calc(var(--color-l) - 5%));
--color-accent-ln10: hsl(var(--color-h), var(--color-s), calc(var(--color-l) - 10%));
--color-accent-ln15: hsl(var(--color-h), var(--color-s), calc(var(--color-l) - 15%));
--color-accent-ln20: hsl(var(--color-h), var(--color-s), calc(var(--color-l) - 20%));
--color-accent-o90: hsla(var(--color-h), var(--color-s), var(--color-l), 0.9);
--color-accent-o80: hsla(var(--color-h), var(--color-s), var(--color-l), 0.8);
--color-accent-o70: hsla(var(--color-h), var(--color-s), var(--color-l), 0.7);
--color-accent-o60: hsla(var(--color-h), var(--color-s), var(--color-l), 0.6);
--color-accent-o50: hsla(var(--color-h), var(--color-s), var(--color-l), 0.5);
--color-accent-o40: hsla(var(--color-h), var(--color-s), var(--color-l), 0.4);
--color-accent-o30: hsla(var(--color-h), var(--color-s), var(--color-l), 0.3);
--color-accent-o20: hsla(var(--color-h), var(--color-s), var(--color-l), 0.2);
--color-accent-o10: hsla(var(--color-h), var(--color-s), var(--color-l), 0.1);
--text-selection: rgb(163 163 163 / 0.2);
--interactive-hover: rgb(163 163 163 / 0.2);
--interactive-accent: hsl(var(--color-h), var(--color-s), calc(var(--color-l) - 10%));
--interactive-accent-hover: hsl(var(--color-h), var(--color-s), calc(var(--color-l) - 5%));
--callout-note--text-color: var(--text-strong);
--callout-info-text-color: var(--text-strong);
--callout-todo-text-color: #0ea5e9;
--callout-tip-text-color: #0ea5e9;
--callout-hint-text-color: #0ea5e9;
--callout-important-text-color: #0ea5e9;
--callout-success-text-color: #22c55e;
--callout-check-text-color: #22c55e;
--callout-done-text-color: #22c55e;
--callout-question-text-color: #eab308;
--callout-help-text-color: #eab308;
--callout-faq-text-color: #eab308;
--callout-warning-text-color: #f97316;
--callout-caution-text-color: #f97316;
--callout-attention-text-color: #f97316;
--callout-failure-text-color: #ef4444;
--callout-fail-text-color: #ef4444;
--callout-missing-text-color: #ef4444;
--callout-danger-text-color: #ef4444;
--callout-error-text-color: #ef4444;
--callout-bug-text-color: #ef4444;
--callout-example-text-color: #8b5cf6;
--callout-quote-text-color: var(--text-strong);
--callout-cite-text-color: var(--text-strong);
--inactive-opacity: 0.3;
--inactive-hover-opacity: 0.8;
--focus-transition-duration: 0.2s;
--radius-s: 0.125em;
}
body:is(.theme-light, .theme-dark).theme-light {
color-scheme: light;
--color-h: var(--color-bw-h);
--color-s: var(--color-bw-s);
--color-l: 10%;
--text-normal: #404040;
--text-strong: #171717;
--text-muted: #737373;
--text-reversed: #fafafa;
--code-bg-color: #f5f5f5;
--inline-code-bg-color: rgba(229, 229, 229, 0.5);
--inline-code-text-color: #525252;
--background-primary: #fafafa;
--background-primary-alt: #e5e5e5;
--background-secondary: #f5f5f5;
--background-secondary-alt: #d4d4d4;
--background-modifier-active-hover: #d4d4d4;
--background-modifier-border-focus: #d4d4d4;
--background-modifier-error-rgb: #ef4444;
--titlebar-isfocused: #ebebeb;
--titlebar-not-focused: #b3b3b3;
--divider-color: #d4d4d4;
--tab-bg-color: #f5f5f5;
--tab-hover-bg-color: var(--background-modifier-active-hover);
--tab-active-bg-color: #e5e5e5;
--close-button-hover-bg-color: rgba(0, 0, 0, 0.1);
--switch-inset-shadow-color: rgba(0, 0, 0, 0.2);
--quote-bg-color: rgba(10, 10, 10, 0.05);
--callout-note-bg-color: rgb(228, 238, 253);
--callout-info-bg-color: rgb(228, 238, 253);
--callout-todo-bg-color: rgb(228, 238, 253);
--callout-tip-bg-color: rgb(232, 248, 248);
--callout-hint-bg-color: rgb(232, 248, 248);
--callout-important-bg-color: rgb(232, 248, 248);
--callout-success-bg-color: rgb(232, 248, 234);
--callout-check-bg-color: rgb(232, 248, 234);
--callout-done-bg-color: rgb(232, 248, 234);
--callout-question-bg-color: rgb(255, 240, 229);
--callout-help-bg-color: rgb(255, 240, 229);
--callout-faq-bg-color: rgb(255, 240, 229);
--callout-warning-bg-color: rgb(255, 240, 229);
--callout-caution-bg-color: rgb(255, 240, 229);
--callout-attention-bg-color: rgb(255, 240, 229);
--callout-failure-bg-color: rgb(255, 232, 234);
--callout-fail-bg-color: rgb(255, 232, 234);
--callout-missing-bg-color: rgb(255, 232, 234);
--callout-danger-bg-color: rgb(255, 232, 234);
--callout-error-bg-color: rgb(255, 232, 234);
--callout-bug-bg-color: rgb(255, 232, 234);
--callout-example-bg-color: rgb(239, 235, 254);
--callout-quote-bg-color: rgb(244, 244, 244);
--callout-cite-bg-color: rgb(244, 244, 244);
--border-color: #d4d4d4;
}
body:is(.theme-light, .theme-dark).theme-light.accent-color-bw-dark {
--color-h: 0;
--color-s: 0%;
--color-l: 10%;
}
body:is(.theme-light, .theme-dark).theme-light.accent-color-sage-light {
--color-h: 84;
--color-s: 20%;
--color-l: 45%;
}
body:is(.theme-light, .theme-dark).theme-light.accent-color-blue-light {
--color-h: 211;
--color-s: 49%;
--color-l: 58%;
}
body:is(.theme-light, .theme-dark).theme-light.accent-color-peach-light {
--color-h: 0;
--color-s: 37%;
--color-l: 65%;
}
body:is(.theme-light, .theme-dark).theme-light.accent-color-beige-light {
--color-h: 30;
--color-s: 34%;
--color-l: 58%;
}
body:is(.theme-light, .theme-dark).theme-light.accent-color-pink-light {
--color-h: 324;
--color-s: 36%;
--color-l: 52%;
}
body:is(.theme-light, .theme-dark).theme-light.accent-color-purple-light {
--color-h: 289;
--color-s: 32%;
--color-l: 55%;
}
body:is(.theme-light, .theme-dark).theme-light.custom-accent-color {
--color-h: var(--accent-color-light-hue-default);
--color-s: var(--accent-color-light-saturation-default);
--color-l: var(--accent-color-light-lightness-default);
}
body:is(.theme-light, .theme-dark).theme-dark {
color-scheme: dark;
--color-h: var(--color-bw-h);
--color-s: var(--color-bw-s);
--color-l: 90%;
--text-normal: #d4d4d4;
--text-strong: #f5f5f5;
--text-muted: #737373;
--text-reversed: #0a0a0a;
--code-bg-color: #171717;
--inline-code-bg-color: rgba(38, 38, 38, 0.5);
--inline-code-text-color: #a3a3a3;
--background-primary: #0a0a0a;
--background-primary-alt: #262626;
--background-secondary: #171717;
--background-secondary-alt: #404040;
--background-modifier-active-hover: #404040;
--background-modifier-border-focus: #404040;
--background-modifier-error-rgb: #ef4444;
--titlebar-isfocused: #171514;
--titlebar-not-focused: #4c4c4d;
--divider-color: #404040;
--tab-bg-color: #171717;
--tab-hover-bg-color: var(--background-modifier-active-hover);
--tab-active-bg-color: #262626;
--close-button-hover-bg-color: rgba(255, 255, 255, 0.1);
--switch-inset-shadow-color: rgba(0, 0, 0, 0.2);
--quote-bg-color: rgba(250, 250, 250, 0.05);
--callout-note-bg-color: rgb(20, 32, 49);
--callout-info-bg-color: rgb(20, 32, 49);
--callout-todo-bg-color: rgb(20, 32, 49);
--callout-tip-bg-color: rgb(30, 44, 44);
--callout-hint-bg-color: rgb(30, 44, 44);
--callout-important-bg-color: rgb(30, 44, 44);
--callout-success-bg-color: rgb(26, 43, 30);
--callout-check-bg-color: rgb(26, 43, 30);
--callout-done-bg-color: rgb(26, 43, 30);
--callout-question-bg-color: rgb(47, 36, 25);
--callout-help-bg-color: rgb(47, 36, 25);
--callout-faq-bg-color: rgb(47, 36, 25);
--callout-warning-bg-color: rgb(47, 36, 25);
--callout-caution-bg-color: rgb(47, 36, 25);
--callout-attention-bg-color: rgb(47, 36, 25);
--callout-failure-bg-color: rgb(50, 26, 26);
--callout-fail-bg-color: rgb(50, 26, 26);
--callout-missing-bg-color: rgb(50, 26, 26);
--callout-danger-bg-color: rgb(50, 26, 26);
--callout-error-bg-color: rgb(50, 26, 26);
--callout-bug-bg-color: rgb(50, 26, 26);
--callout-example-bg-color: rgb(38, 32, 48);
--callout-quote-bg-color: rgb(36, 36, 36);
--callout-cite-bg-color: rgb(36, 36, 36);
--border-color: #404040;
}
body:is(.theme-light, .theme-dark).theme-dark.accent-color-bw-dark {
--color-h: 0;
--color-s: 0%;
--color-l: 90%;
}
body:is(.theme-light, .theme-dark).theme-dark.accent-color-sage-dark {
--color-h: 88;
--color-s: 23%;
--color-l: 69%;
}
body:is(.theme-light, .theme-dark).theme-dark.accent-color-blue-dark {
--color-h: 207;
--color-s: 47%;
--color-l: 73%;
}
body:is(.theme-light, .theme-dark).theme-dark.accent-color-peach-dark {
--color-h: 0;
--color-s: 37%;
--color-l: 65%;
}
body:is(.theme-light, .theme-dark).theme-dark.accent-color-beige-dark {
--color-h: 50;
--color-s: 100%;
--color-l: 91%;
}
body:is(.theme-light, .theme-dark).theme-dark.accent-color-pink-dark {
--color-h: 0;
--color-s: 100%;
--color-l: 91%;
}
body:is(.theme-light, .theme-dark).theme-dark.accent-color-purple-dark {
--color-h: 269;
--color-s: 59%;
--color-l: 85%;
}
body:is(.theme-light, .theme-dark).theme-dark.custom-accent-color {
--color-h: var(--accent-color-dark-hue-default);
--color-s: var(--accent-color-dark-saturation-default);
--color-l: var(--accent-color-dark-lightness-default);
}
body:is(.theme-light, .theme-dark).colorful-headers {
--h1-color: var(--color-accent-h1);
--h2-color: var(--color-accent-h1);
--h3-color: var(--color-accent-h1);
--h4-color: var(--color-accent-h1);
--h5-color: var(--color-accent-h1);
--h6-color: var(--color-accent-h1);
}
body:is(.theme-light, .theme-dark).colorful-headers.header-color-gradient {
--h1-color: var(--color-gradient-h1);
--h2-color: var(--color-gradient-h2);
--h3-color: var(--color-gradient-h3);
--h4-color: var(--color-gradient-h4);
--h5-color: var(--color-gradient-h5);
--h6-color: var(--color-gradient-h6);
}
.cm-scroller::-webkit-scrollbar,
.nav-files-container::-webkit-scrollbar,
.search-result-container::-webkit-scrollbar,
.view-content::-webkit-scrollbar,
.tag-container::-webkit-scrollbar,
.vertical-tab-header::-webkit-scrollbar,
.vertical-tab-content::-webkit-scrollbar,
.prompt-results::-webkit-scrollbar {
width: 5px;
height: 5px;
-webkit-appearance: none;
appearance: none;
}
.cm-scroller::-webkit-scrollbar-thumb,
.nav-files-container::-webkit-scrollbar-thumb,
.search-result-container::-webkit-scrollbar-thumb,
.view-content::-webkit-scrollbar-thumb,
.tag-container::-webkit-scrollbar-thumb,
.vertical-tab-header::-webkit-scrollbar-thumb,
.vertical-tab-content::-webkit-scrollbar-thumb,
.prompt-results::-webkit-scrollbar-thumb {
background-color: transparent;
-webkit-transition: background-color 0.2s ease;
transition: background-color 0.2s ease;
border-radius: 0;
border-right: 2px solid var(--text-strong);
border-bottom: none;
}
.cm-scroller::-webkit-scrollbar-thumb:hover,
.nav-files-container::-webkit-scrollbar-thumb:hover,
.search-result-container::-webkit-scrollbar-thumb:hover,
.view-content::-webkit-scrollbar-thumb:hover,
.tag-container::-webkit-scrollbar-thumb:hover,
.vertical-tab-header::-webkit-scrollbar-thumb:hover,
.vertical-tab-content::-webkit-scrollbar-thumb:hover,
.prompt-results::-webkit-scrollbar-thumb:hover {
background-color: var(--text-normal);
}
.titlebar .titlebar-button-container {
background-color: transparent;
}
.markdown-rendered p, .style-settings-container p {
margin: 2em 0;
}
.markdown-rendered p, .style-settings-container p,
.markdown-source-view.is-live-preview .cm-line {
font-family: var(--font-text);
font-size: var(--font-text-size);
font-weight: var(--font-text-weight);
color: var(--text-normal);
line-height: 2;
}
.markdown-rendered h1, .style-settings-container h1,
.markdown-source-view.is-live-preview .cm-line.HyperMD-header-1 {
font-family: var(--font-header);
font-size: var(--font-h1-size);
font-weight: var(--font-h1-weight);
color: var(--h1-color);
}
.markdown-rendered h2, .style-settings-container h2,
.markdown-source-view.is-live-preview .cm-line.HyperMD-header-2 {
font-family: var(--font-header);
font-size: var(--font-h2-size);
font-weight: var(--font-h2-weight);
color: var(--h2-color);
}
.markdown-rendered h3, .style-settings-container h3,
.markdown-source-view.is-live-preview .cm-line.HyperMD-header-3 {
font-family: var(--font-header);
font-size: var(--font-h3-size);
font-weight: var(--font-h3-weight);
color: var(--h3-color);
}
.markdown-rendered h4, .style-settings-container h4,
.markdown-source-view.is-live-preview .cm-line.HyperMD-header-4 {
font-family: var(--font-header);
font-size: var(--font-h4-size);
font-weight: var(--font-h4-weight);
color: var(--h4-color);
}
.markdown-rendered h5, .style-settings-container h5,
.markdown-source-view.is-live-preview .cm-line.HyperMD-header-5 {
font-family: var(--font-header);
font-size: var(--font-h5-size);
font-weight: var(--font-h5-weight);
color: var(--h5-color);
}
.markdown-rendered h6, .style-settings-container h6,
.markdown-source-view.is-live-preview .cm-line.HyperMD-header-6 {
font-family: var(--font-header);
font-size: var(--font-h6-size);
font-weight: var(--font-h6-weight);
color: var(--h6-color);
}
.markdown-rendered :is(h1, h2, h3, h4, h5, h6), .style-settings-container :is(h1, h2, h3, h4, h5, h6) {
margin: calc(var(--font-text-size) * 2.5) 0;
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header::before, body.header-level-indicator .markdown-rendered :is(h1, h2, h3, h4, h5, h6)::before, body.header-level-indicator .style-settings-container :is(h1, h2, h3, h4, h5, h6)::before {
font-family: var(--font-text);
font-size: 0.7em;
font-weight: 100;
color: var(--text-muted);
position: relative;
width: 1.25em;
margin: 0 0.25em 0 0;
transition: all 0.2s;
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header:has(.is-collapsed):before, body.header-level-indicator .markdown-rendered :is(h1, h2, h3, h4, h5, h6):has(.is-collapsed):before, body.header-level-indicator .style-settings-container :is(h1, h2, h3, h4, h5, h6):has(.is-collapsed):before {
color: var(--text-strong);
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header .collapse-indicator, body.header-level-indicator .markdown-rendered :is(h1, h2, h3, h4, h5, h6) .collapse-indicator, body.header-level-indicator .style-settings-container :is(h1, h2, h3, h4, h5, h6) .collapse-indicator {
cursor: pointer;
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header .collapse-indicator svg, body.header-level-indicator .markdown-rendered :is(h1, h2, h3, h4, h5, h6) .collapse-indicator svg, body.header-level-indicator .style-settings-container :is(h1, h2, h3, h4, h5, h6) .collapse-indicator svg {
opacity: 0;
}
body.header-level-indicator .markdown-rendered h1:before, body.header-level-indicator .style-settings-container h1:before, body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-1:before {
content: "#1";
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-1 .collapse-indicator {
transform: translate(calc(-0.5em + 0.04em * 1), 0) scale(calc(1.8 - 0.1 * 1), 1);
}
body.header-level-indicator .markdown-rendered h1 .collapse-indicator, body.header-level-indicator .style-settings-container h1 .collapse-indicator {
transform: translate(calc(0.5em + 0.06em * 1), calc(-1.5em + 0em * 1)) scale(calc(1.8 - 0.1 * 1), 1);
}
body.header-level-indicator .markdown-rendered h2:before, body.header-level-indicator .style-settings-container h2:before, body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-2:before {
content: "#2";
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-2 .collapse-indicator {
transform: translate(calc(-0.5em + 0.04em * 2), 0) scale(calc(1.8 - 0.1 * 2), 1);
}
body.header-level-indicator .markdown-rendered h2 .collapse-indicator, body.header-level-indicator .style-settings-container h2 .collapse-indicator {
transform: translate(calc(0.5em + 0.06em * 2), calc(-1.5em + 0em * 2)) scale(calc(1.8 - 0.1 * 2), 1);
}
body.header-level-indicator .markdown-rendered h3:before, body.header-level-indicator .style-settings-container h3:before, body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-3:before {
content: "#3";
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-3 .collapse-indicator {
transform: translate(calc(-0.5em + 0.04em * 3), 0) scale(calc(1.8 - 0.1 * 3), 1);
}
body.header-level-indicator .markdown-rendered h3 .collapse-indicator, body.header-level-indicator .style-settings-container h3 .collapse-indicator {
transform: translate(calc(0.5em + 0.06em * 3), calc(-1.5em + 0em * 3)) scale(calc(1.8 - 0.1 * 3), 1);
}
body.header-level-indicator .markdown-rendered h4:before, body.header-level-indicator .style-settings-container h4:before, body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-4:before {
content: "#4";
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-4 .collapse-indicator {
transform: translate(calc(-0.5em + 0.04em * 4), 0) scale(calc(1.8 - 0.1 * 4), 1);
}
body.header-level-indicator .markdown-rendered h4 .collapse-indicator, body.header-level-indicator .style-settings-container h4 .collapse-indicator {
transform: translate(calc(0.5em + 0.06em * 4), calc(-1.5em + 0em * 4)) scale(calc(1.8 - 0.1 * 4), 1);
}
body.header-level-indicator .markdown-rendered h5:before, body.header-level-indicator .style-settings-container h5:before, body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-5:before {
content: "#5";
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-5 .collapse-indicator {
transform: translate(calc(-0.5em + 0.04em * 5), 0) scale(calc(1.8 - 0.1 * 5), 1);
}
body.header-level-indicator .markdown-rendered h5 .collapse-indicator, body.header-level-indicator .style-settings-container h5 .collapse-indicator {
transform: translate(calc(0.5em + 0.06em * 5), calc(-1.5em + 0em * 5)) scale(calc(1.8 - 0.1 * 5), 1);
}
body.header-level-indicator .markdown-rendered h6:before, body.header-level-indicator .style-settings-container h6:before, body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-6:before {
content: "#6";
}
body.header-level-indicator .markdown-source-view.is-live-preview .cm-line.HyperMD-header-6 .collapse-indicator {
transform: translate(calc(-0.5em + 0.04em * 6), 0) scale(calc(1.8 - 0.1 * 6), 1);
}
body.header-level-indicator .markdown-rendered h6 .collapse-indicator, body.header-level-indicator .style-settings-container h6 .collapse-indicator {
transform: translate(calc(0.5em + 0.06em * 6), calc(-1.5em + 0em * 6)) scale(calc(1.8 - 0.1 * 6), 1);
}
.markdown-rendered :is(h1, h2, h3, h4, h5, h6), .style-settings-container :is(h1, h2, h3, h4, h5, h6),
.markdown-source-view.is-live-preview .cm-line.HyperMD-header {
width: -moz-max-content;
width: max-content;
max-width: 100%;
line-height: 1.5;
padding: 0;
}
body.header-hovering-underline-grow .markdown-rendered :is(h1, h2, h3, h4, h5, h6)::after, body.header-hovering-underline-grow .style-settings-container :is(h1, h2, h3, h4, h5, h6)::after, body.header-hovering-underline-fade .markdown-rendered :is(h1, h2, h3, h4, h5, h6)::after, body.header-hovering-underline-fade .style-settings-container :is(h1, h2, h3, h4, h5, h6)::after,
body.header-hovering-underline-grow .markdown-source-view.is-live-preview .cm-line.HyperMD-header::after,
body.header-hovering-underline-fade .markdown-source-view.is-live-preview .cm-line.HyperMD-header::after {
content: "";
display: block;
height: calc(0.125 * var(--font-text-size));
width: 0;
background-color: transparent;
}
body.header-hovering-underline-grow .markdown-rendered :is(h1, h2, h3, h4, h5, h6)::after, body.header-hovering-underline-grow .style-settings-container :is(h1, h2, h3, h4, h5, h6)::after,
body.header-hovering-underline-grow .markdown-source-view.is-live-preview .cm-line.HyperMD-header::after {
background-color: var(--text-normal);
transition: width 0.2s;
}
body.header-hovering-underline-grow .markdown-rendered :is(h1, h2, h3, h4, h5, h6):hover::after, body.header-hovering-underline-grow .style-settings-container :is(h1, h2, h3, h4, h5, h6):hover::after,
body.header-hovering-underline-grow .markdown-source-view.is-live-preview .cm-line.HyperMD-header:hover::after {
width: 100%;
}
body.header-hovering-underline-fade .markdown-rendered :is(h1, h2, h3, h4, h5, h6)::after, body.header-hovering-underline-fade .style-settings-container :is(h1, h2, h3, h4, h5, h6)::after,
body.header-hovering-underline-fade .markdown-source-view.is-live-preview .cm-line.HyperMD-header::after {
width: 100%;
transition: background-color 0.2s;
}
body.header-hovering-underline-fade .markdown-rendered :is(h1, h2, h3, h4, h5, h6):hover::after, body.header-hovering-underline-fade .style-settings-container :is(h1, h2, h3, h4, h5, h6):hover::after,
body.header-hovering-underline-fade .markdown-source-view.is-live-preview .cm-line.HyperMD-header:hover::after {
background-color: var(--text-normal);
}
.markdown-rendered a:not(.tag), .style-settings-container a:not(.tag),
.markdown-source-view.is-live-preview a {
font-family: inherit;
font-size: inherit;
font-weight: var(--font-text-weight);
color: var(--link-color);
-webkit-text-decoration: var(--link-decoration-line) var(--link-decoration-style) var(--link-decoration-color) var(--link-decoration-thickness);
text-decoration: var(--link-decoration-line) var(--link-decoration-style) var(--link-decoration-color) var(--link-decoration-thickness);
text-underline-offset: var(--link-decoration-offset);
}
.markdown-source-view.is-live-preview span:is(.cm-url, .cm-inline-code, .cm-link) {
text-decoration: none;
}
.markdown-source-view.is-live-preview span:is(.cm-url, .cm-inline-code, .cm-link):hover {
text-decoration: none;
}
.markdown-source-view.is-live-preview span.cm-formatting.cm-link:not(.cm-url), .markdown-source-view.is-live-preview span.cm-formatting.cm-link:not(.cm-url):hover, .markdown-source-view.is-live-preview span.cm-formatting-link-string, .markdown-source-view.is-live-preview span.cm-formatting-link-string:hover {
color: var(--text-normal);
}
.markdown-rendered strong, .style-settings-container strong,
.markdown-source-view.is-live-preview .cm-strong,
.markdown-source-view.is-live-preview strong {
font-family: var(--font-text);
font-size: var(--font-strong-size);
font-weight: var(--font-strong-weight);
color: var(--font-strong-color);
-webkit-text-decoration: var(--font-strong-decoration-line) var(--font-strong-decoration-style) var(--font-strong-decoration-color) var(--font-strong-decoration-width);
text-decoration: var(--font-strong-decoration-line) var(--font-strong-decoration-style) var(--font-strong-decoration-color) var(--font-strong-decoration-width);
text-underline-offset: var(--font-strong-decoration-offset);
font-style: var(--font-strong-style);
}
.markdown-rendered em, .style-settings-container em,
.markdown-source-view.is-live-preview .cm-em,
.markdown-source-view.is-live-preview em {
font-family: var(--font-text);
font-size: var(--font-em-size);
font-weight: var(--font-em-weight);
color: var(--font-em-color);
-webkit-text-decoration: var(--font-em-decoration-line) var(--font-em-decoration-style) var(--font-em-decoration-color) var(--font-em-decoration-width);
text-decoration: var(--font-em-decoration-line) var(--font-em-decoration-style) var(--font-em-decoration-color) var(--font-em-decoration-width);
text-underline-offset: var(--font-em-decoration-offset);
font-style: var(--font-em-style);
}
.markdown-rendered mark, .style-settings-container mark,
.markdown-source-view.is-live-preview .cm-highlight,
.markdown-source-view.is-live-preview mark {
font-family: var(--font-text);
font-size: var(--font-highlight-size);
font-weight: var(--font-highlight-weight);
color: var(--font-highlight-color);
-webkit-text-decoration: var(--font-highlight-decoration-line) var(--font-highlight-decoration-style) var(--font-highlight-decoration-color) var(--font-highlight-decoration-width);
text-decoration: var(--font-highlight-decoration-line) var(--font-highlight-decoration-style) var(--font-highlight-decoration-color) var(--font-highlight-decoration-width);
text-underline-offset: var(--font-highlight-decoration-offset);
background-color: var(--font-highlight-bg-color);
font-style: var(--font-highlight-style);
padding: 0.125em 0.25em;
border-radius: 0.125em;
margin: 0.125em;
}
body.font-highlight-cover-mode .markdown-rendered mark, body.font-highlight-cover-mode .style-settings-container mark, body.font-highlight-cover-mode .markdown-source-view.is-live-preview mark,
body.font-highlight-cover-mode .markdown-source-view.is-live-preview :not(.cm-formatting-highlight) + .cm-highlight {
transition: color 0.2s;
color: var(--font-highlight-bg-color);
}
body.font-highlight-cover-mode .markdown-rendered mark:hover, body.font-highlight-cover-mode .style-settings-container mark:hover, body.font-highlight-cover-mode .markdown-source-view.is-live-preview mark:hover,
body.font-highlight-cover-mode .markdown-source-view.is-live-preview :not(.cm-formatting-highlight) + .cm-highlight:hover {
color: var(--font-highlight-color);
}
body.font-highlight-cover-mode .markdown-source-view.is-live-preview .cm-highlight.cm-formatting-highlight, body.font-highlight-cover-mode .markdown-source-view.is-live-preview .cm-active.cm-line .cm-highlight {
color: var(--font-highlight-color);
}
.markdown-rendered del, .style-settings-container del,
.markdown-source-view.is-live-preview .cm-strikethrough,
.markdown-source-view.is-live-preview del {
font-family: var(--font-text);
font-size: var(--font-strikethrough-size);
font-weight: var(--font-strikethrough-weight);
color: var(--font-strikethrough-color);
-webkit-text-decoration: var(--font-strikethrough-decoration-line) var(--font-strikethrough-decoration-style) var(--font-strikethrough-decoration-color) var(--font-strikethrough-decoration-width);
text-decoration: var(--font-strikethrough-decoration-line) var(--font-strikethrough-decoration-style) var(--font-strikethrough-decoration-color) var(--font-strikethrough-decoration-width);
font-style: var(--font-strikethrough-style);
}
.markdown-rendered u, .style-settings-container u,
.markdown-source-view.is-live-preview u {
font-family: var(--font-text);
font-size: var(--font-underlined-size);
font-weight: var(--font-underlined-weight);
color: var(--font-underlined-color);
-webkit-text-decoration: var(--font-underlined-decoration-line) var(--font-underlined-decoration-style) var(--font-underlined-decoration-color) var(--font-underlined-decoration-width);
text-decoration: var(--font-underlined-decoration-line) var(--font-underlined-decoration-style) var(--font-underlined-decoration-color) var(--font-underlined-decoration-width);
text-underline-offset: var(--font-underlined-decoration-offset);
}
.markdown-rendered .inline-title, .style-settings-container .inline-title,
.markdown-source-view.is-live-preview .inline-title {
font-family: var(--font-inline-title);
font-size: var(--font-inline-title-size);
font-weight: var(--font-inline-title-weight);
color: var(--text-strong);
}
body.enable-alternative-checkboxes .markdown-rendered .task-list-item > ul, body.enable-alternative-checkboxes .style-settings-container .task-list-item > ul {
color: var(--text-normal);
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task=" "] .task-list-item-checkbox:hover, body.enable-alternative-checkboxes .markdown-rendered .task-list-item:not(.is-checked) .task-list-item-checkbox:hover, body.enable-alternative-checkboxes .style-settings-container .task-list-item:not(.is-checked) .task-list-item-checkbox:hover {
border-color: #22c55e;
}
.markdown-source-view.is-live-preview .HyperMD-task-line:is([data-task=x], [data-task=X]),
.markdown-rendered .task-list-item:is([data-task=x], [data-task=X]),
.style-settings-container .task-list-item:is([data-task=x], [data-task=X]) {
text-decoration: none;
}
.markdown-source-view.is-live-preview .HyperMD-task-line[data-task=X],
.markdown-rendered .task-list-item[data-task=X],
.style-settings-container .task-list-item[data-task=X] {
color: var(--text-normal);
}
.markdown-source-view.is-live-preview .HyperMD-task-line[data-task="-"],
.markdown-rendered .task-list-item[data-task="-"],
.style-settings-container .task-list-item[data-task="-"] {
color: var(--checklist-delete-decoration-color);
}
body.circle-checkbox .markdown-source-view.is-live-preview .HyperMD-task-line .task-list-item-checkbox, body.circle-checkbox .markdown-rendered .task-list-item .task-list-item-checkbox, body.circle-checkbox .style-settings-container .task-list-item .task-list-item-checkbox {
border-radius: 50%;
}
body.circle-checkbox .bases-toolbar-menu-container input[type=checkbox] {
border-radius: 50%;
}
.markdown-source-view.is-live-preview .HyperMD-task-line:not([data-task=" "]) .task-list-item-checkbox,
.markdown-rendered .task-list-item.is-checked > p > .task-list-item-checkbox,
.style-settings-container .task-list-item.is-checked > p > .task-list-item-checkbox,
.markdown-rendered .task-list-item.is-checked > .task-list-item-checkbox,
.style-settings-container .task-list-item.is-checked > .task-list-item-checkbox {
border: 1px solid transparent;
background-color: transparent;
}
.markdown-source-view.is-live-preview .HyperMD-task-line:not([data-task=" "]) .task-list-item-checkbox:hover::after,
.markdown-rendered .task-list-item.is-checked > p > .task-list-item-checkbox:hover::after,
.style-settings-container .task-list-item.is-checked > p > .task-list-item-checkbox:hover::after,
.markdown-rendered .task-list-item.is-checked > .task-list-item-checkbox:hover::after,
.style-settings-container .task-list-item.is-checked > .task-list-item-checkbox:hover::after {
background-color: #737373;
}
.markdown-source-view.is-live-preview .HyperMD-task-line:not([data-task=" "]) .task-list-item-checkbox:after,
.markdown-rendered .task-list-item.is-checked > p > .task-list-item-checkbox:after,
.style-settings-container .task-list-item.is-checked > p > .task-list-item-checkbox:after,
.markdown-rendered .task-list-item.is-checked > .task-list-item-checkbox:after,
.style-settings-container .task-list-item.is-checked > .task-list-item-checkbox:after {
transition: background-color 0.2s;
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="m237.66 85.26l-128.4 128.4a8 8 0 0 1-11.32 0l-71.6-72a8 8 0 0 1 0-11.31l24-24a8 8 0 0 1 11.32 0L104 147.43l98.34-97.09a8 8 0 0 1 11.32 0l24 23.6a8 8 0 0 1 0 11.32" opacity=".2"/><path d="m243.28 68.24l-24-23.56a16 16 0 0 0-22.59 0L104 136.23l-36.69-35.6a16 16 0 0 0-22.58.05l-24 24a16 16 0 0 0 0 22.61l71.62 72a16 16 0 0 0 22.63 0L243.33 90.91a16 16 0 0 0-.05-22.67M103.62 208L32 136l24-24a.6.6 0 0 1 .08.08l42.35 41.09a8 8 0 0 0 11.19 0L208.06 56L232 79.6Z"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="m237.66 85.26l-128.4 128.4a8 8 0 0 1-11.32 0l-71.6-72a8 8 0 0 1 0-11.31l24-24a8 8 0 0 1 11.32 0L104 147.43l98.34-97.09a8 8 0 0 1 11.32 0l24 23.6a8 8 0 0 1 0 11.32" opacity=".2"/><path d="m243.28 68.24l-24-23.56a16 16 0 0 0-22.59 0L104 136.23l-36.69-35.6a16 16 0 0 0-22.58.05l-24 24a16 16 0 0 0 0 22.61l71.62 72a16 16 0 0 0 22.63 0L243.33 90.91a16 16 0 0 0-.05-22.67M103.62 208L32 136l24-24a.6.6 0 0 1 .08.08l42.35 41.09a8 8 0 0 0 11.19 0L208.06 56L232 79.6Z"/></g></svg>');
background-color: #22c55e;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line .task-list-item-checkbox, body.enable-alternative-checkboxes .markdown-rendered .task-list-item .task-list-item-checkbox, body.enable-alternative-checkboxes .style-settings-container .task-list-item .task-list-item-checkbox {
transition: background-color 0.2s, border-color 0.2s;
background-color: transparent;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line .task-list-item-checkbox::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item .task-list-item-checkbox::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item .task-list-item-checkbox::after {
transition: background-color 0.2s;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 150%;
height: 150%;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="1"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="1"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="1"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="1"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="1"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="1"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M144 48v160a8 8 0 0 1-16 0V62.13l-27.88 16.73a8 8 0 1 1-8.24-13.72l40-24A8 8 0 0 1 144 48"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M144 48v160a8 8 0 0 1-16 0V62.13l-27.88 16.73a8 8 0 1 1-8.24-13.72l40-24A8 8 0 0 1 144 48"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="2"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="2"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="2"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="2"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="2"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="2"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M176 208a8 8 0 0 1-8 8H88a8 8 0 0 1-6.4-12.8l71.94-95.92a32 32 0 1 0-51.1-38.53a32.5 32.5 0 0 0-3.78 6.46A8 8 0 1 1 84 68.8a48 48 0 1 1 82.33 48.09L104 200h64a8 8 0 0 1 8 8"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M176 208a8 8 0 0 1-8 8H88a8 8 0 0 1-6.4-12.8l71.94-95.92a32 32 0 1 0-51.1-38.53a32.5 32.5 0 0 0-3.78 6.46A8 8 0 1 1 84 68.8a48 48 0 1 1 82.33 48.09L104 200h64a8 8 0 0 1 8 8"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="3"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="3"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="3"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="3"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="3"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="3"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M176 160a56 56 0 0 1-93.33 41.74a8 8 0 1 1 10.66-11.92A40 40 0 1 0 120 120a8 8 0 0 1-6.4-12.8L152 56H88a8 8 0 0 1 0-16h80a8 8 0 0 1 6.4 12.8l-39.84 53.12A56.1 56.1 0 0 1 176 160"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M176 160a56 56 0 0 1-93.33 41.74a8 8 0 1 1 10.66-11.92A40 40 0 1 0 120 120a8 8 0 0 1-6.4-12.8L152 56H88a8 8 0 0 1 0-16h80a8 8 0 0 1 6.4 12.8l-39.84 53.12A56.1 56.1 0 0 1 176 160"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="4"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="4"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="4"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="4"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="4"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="4"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M184 160h-16V48a8 8 0 0 0-14.25-5l-96 120A8 8 0 0 0 64 176h88v32a8 8 0 0 0 16 0v-32h16a8 8 0 0 0 0-16m-32 0H80.64L152 70.81Z"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M184 160h-16V48a8 8 0 0 0-14.25-5l-96 120A8 8 0 0 0 64 176h88v32a8 8 0 0 0 16 0v-32h16a8 8 0 0 0 0-16m-32 0H80.64L152 70.81Z"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="5"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="5"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="5"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="5"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="5"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="5"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M176 160a56 56 0 0 1-93.33 41.74a8 8 0 1 1 10.66-11.92a40 40 0 1 0 .77-60.3a8 8 0 0 1-13-7.66l15.06-75.43A8 8 0 0 1 104 40h64a8 8 0 0 1 0 16h-57.44l-10.32 51.6A56 56 0 0 1 176 160"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M176 160a56 56 0 0 1-93.33 41.74a8 8 0 1 1 10.66-11.92a40 40 0 1 0 .77-60.3a8 8 0 0 1-13-7.66l15.06-75.43A8 8 0 0 1 104 40h64a8 8 0 0 1 0 16h-57.44l-10.32 51.6A56 56 0 0 1 176 160"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="6"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="6"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="6"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="6"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="6"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="6"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M128 104a56 56 0 0 0-15.62 2.23L143 51.93a8 8 0 1 0-14-7.85l-49.55 88A56 56 0 1 0 128 104m0 96a40 40 0 1 1 40-40a40 40 0 0 1-40 40"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M128 104a56 56 0 0 0-15.62 2.23L143 51.93a8 8 0 1 0-14-7.85l-49.55 88A56 56 0 1 0 128 104m0 96a40 40 0 1 1 40-40a40 40 0 0 1-40 40"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="7"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="7"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="7"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="7"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="7"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="7"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="m175.66 50.3l-48 160a8 8 0 0 1-15.32-4.6L157.25 56H88a8 8 0 0 1 0-16h80a8 8 0 0 1 7.66 10.3"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="m175.66 50.3l-48 160a8 8 0 0 1-15.32-4.6L157.25 56H88a8 8 0 0 1 0-16h80a8 8 0 0 1 7.66 10.3"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="8"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="8"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="8"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="8"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="8"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="8"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M155.55 119.27a48 48 0 1 0-55.1 0a56 56 0 1 0 55.1 0M96 80a32 32 0 1 1 32 32a32 32 0 0 1-32-32m32 128a40 40 0 1 1 40-40a40 40 0 0 1-40 40"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M155.55 119.27a48 48 0 1 0-55.1 0a56 56 0 1 0 55.1 0M96 80a32 32 0 1 1 32 32a32 32 0 0 1-32-32m32 128a40 40 0 1 1 40-40a40 40 0 0 1-40 40"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="9"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="9"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="9"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="9"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="9"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="9"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M128 40a56 56 0 1 0 15.62 109.77L113 204.07a8 8 0 1 0 14 7.85l49.55-88A56 56 0 0 0 128 40m0 96a40 40 0 1 1 40-40a40 40 0 0 1-40 40"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M128 40a56 56 0 1 0 15.62 109.77L113 204.07a8 8 0 1 0 14 7.85l49.55-88A56 56 0 0 0 128 40m0 96a40 40 0 1 1 40-40a40 40 0 0 1-40 40"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="0"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="0"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="0"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="0"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="0"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="0"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M183.25 63.2C170.25 42.79 151.15 32 128 32S85.75 42.79 72.75 63.2C62 80.18 56 103.19 56 128s6 47.82 16.75 64.8c13 20.41 32.1 31.2 55.25 31.2s42.25-10.79 55.25-31.2c10.8-17 16.75-40 16.75-64.8s-5.95-47.82-16.75-64.8M128 208c-38.68 0-56-40.18-56-80s17.32-80 56-80s56 40.18 56 80s-17.32 80-56 80"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 40v176a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V40a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M183.25 63.2C170.25 42.79 151.15 32 128 32S85.75 42.79 72.75 63.2C62 80.18 56 103.19 56 128s6 47.82 16.75 64.8c13 20.41 32.1 31.2 55.25 31.2s42.25-10.79 55.25-31.2c10.8-17 16.75-40 16.75-64.8s-5.95-47.82-16.75-64.8M128 208c-38.68 0-56-40.18-56-80s17.32-80 56-80s56 40.18 56 80s-17.32 80-56 80"/></g></svg>');
background-color: #0ea5e9;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="!"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="!"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="!"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="!"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="!"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="!"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M215.46 216H40.54c-12.62 0-20.54-13.21-14.41-23.91l87.46-151.87c6.3-11 22.52-11 28.82 0l87.46 151.87c6.13 10.7-1.79 23.91-14.41 23.91" opacity=".2"/><path d="M236.8 188.09L149.35 36.22a24.76 24.76 0 0 0-42.7 0L19.2 188.09a23.51 23.51 0 0 0 0 23.72A24.35 24.35 0 0 0 40.55 224h174.9a24.35 24.35 0 0 0 21.33-12.19a23.51 23.51 0 0 0 .02-23.72m-13.87 15.71a8.5 8.5 0 0 1-7.48 4.2H40.55a8.5 8.5 0 0 1-7.48-4.2a7.59 7.59 0 0 1 0-7.72l87.45-151.87a8.75 8.75 0 0 1 15 0l87.45 151.87a7.59 7.59 0 0 1-.04 7.72M120 144v-40a8 8 0 0 1 16 0v40a8 8 0 0 1-16 0m20 36a12 12 0 1 1-12-12a12 12 0 0 1 12 12"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M215.46 216H40.54c-12.62 0-20.54-13.21-14.41-23.91l87.46-151.87c6.3-11 22.52-11 28.82 0l87.46 151.87c6.13 10.7-1.79 23.91-14.41 23.91" opacity=".2"/><path d="M236.8 188.09L149.35 36.22a24.76 24.76 0 0 0-42.7 0L19.2 188.09a23.51 23.51 0 0 0 0 23.72A24.35 24.35 0 0 0 40.55 224h174.9a24.35 24.35 0 0 0 21.33-12.19a23.51 23.51 0 0 0 .02-23.72m-13.87 15.71a8.5 8.5 0 0 1-7.48 4.2H40.55a8.5 8.5 0 0 1-7.48-4.2a7.59 7.59 0 0 1 0-7.72l87.45-151.87a8.75 8.75 0 0 1 15 0l87.45 151.87a7.59 7.59 0 0 1-.04 7.72M120 144v-40a8 8 0 0 1 16 0v40a8 8 0 0 1-16 0m20 36a12 12 0 1 1-12-12a12 12 0 0 1 12 12"/></g></svg>');
background-color: #f97316;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="@"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="@"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="@"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="@"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="@"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="@"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M224 128a96 96 0 1 1-96-96a96 96 0 0 1 96 96" opacity=".2"/><path d="M128 24a104 104 0 0 0 0 208c21.51 0 44.1-6.48 60.43-17.33a8 8 0 0 0-8.86-13.33C166 210.38 146.21 216 128 216a88 88 0 1 1 88-88c0 26.45-10.88 32-20 32s-20-5.55-20-32V88a8 8 0 0 0-16 0v4.26a48 48 0 1 0 5.93 65.1c6 12 16.35 18.64 30.07 18.64c22.54 0 36-17.94 36-48A104.11 104.11 0 0 0 128 24m0 136a32 32 0 1 1 32-32a32 32 0 0 1-32 32"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M224 128a96 96 0 1 1-96-96a96 96 0 0 1 96 96" opacity=".2"/><path d="M128 24a104 104 0 0 0 0 208c21.51 0 44.1-6.48 60.43-17.33a8 8 0 0 0-8.86-13.33C166 210.38 146.21 216 128 216a88 88 0 1 1 88-88c0 26.45-10.88 32-20 32s-20-5.55-20-32V88a8 8 0 0 0-16 0v4.26a48 48 0 1 0 5.93 65.1c6 12 16.35 18.64 30.07 18.64c22.54 0 36-17.94 36-48A104.11 104.11 0 0 0 128 24m0 136a32 32 0 1 1 32-32a32 32 0 0 1-32 32"/></g></svg>');
background-color: #f59e0b;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="#"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="#"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="#"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="#"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="#"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="#"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="m165.82 96l-11.64 64h-64l11.64-64Z" opacity=".2"/><path d="M224 88h-48.6l8.47-46.57a8 8 0 0 0-15.74-2.86l-9 49.43H111.4l8.47-46.57a8 8 0 0 0-15.74-2.86L95.14 88H48a8 8 0 0 0 0 16h44.23l-8.73 48H32a8 8 0 0 0 0 16h48.6l-8.47 46.57a8 8 0 0 0 6.44 9.3A8 8 0 0 0 80 224a8 8 0 0 0 7.86-6.57l9-49.43h47.74l-8.47 46.57a8 8 0 0 0 6.44 9.3a8 8 0 0 0 1.43.13a8 8 0 0 0 7.86-6.57l9-49.43H208a8 8 0 0 0 0-16h-44.23l8.73-48H224a8 8 0 0 0 0-16m-76.5 64H99.77l8.73-48h47.73Z"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="m165.82 96l-11.64 64h-64l11.64-64Z" opacity=".2"/><path d="M224 88h-48.6l8.47-46.57a8 8 0 0 0-15.74-2.86l-9 49.43H111.4l8.47-46.57a8 8 0 0 0-15.74-2.86L95.14 88H48a8 8 0 0 0 0 16h44.23l-8.73 48H32a8 8 0 0 0 0 16h48.6l-8.47 46.57a8 8 0 0 0 6.44 9.3A8 8 0 0 0 80 224a8 8 0 0 0 7.86-6.57l9-49.43h47.74l-8.47 46.57a8 8 0 0 0 6.44 9.3a8 8 0 0 0 1.43.13a8 8 0 0 0 7.86-6.57l9-49.43H208a8 8 0 0 0 0-16h-44.23l8.73-48H224a8 8 0 0 0 0-16m-76.5 64H99.77l8.73-48h47.73Z"/></g></svg>');
background-color: #a855f7;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="%"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="%"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="%"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="%"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="%"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="%"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M95.8 56.2a28 28 0 1 1-39.6 0a28 28 0 0 1 39.6 0m104 104a28 28 0 1 0 0 39.6a28 28 0 0 0 0-39.6" opacity=".2"/><path d="m205.66 61.64l-144 144a8 8 0 0 1-11.32-11.32l144-144a8 8 0 0 1 11.32 11.31Zm-155.12 39.8a36 36 0 0 1 50.92-50.91a36 36 0 0 1-50.92 50.91M56 76a20 20 0 1 0 34.14-14.16A20 20 0 0 0 56 76m160 104a36 36 0 1 1-10.54-25.46A35.76 35.76 0 0 1 216 180m-16 0a20 20 0 1 0-5.86 14.14A19.87 19.87 0 0 0 200 180"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M95.8 56.2a28 28 0 1 1-39.6 0a28 28 0 0 1 39.6 0m104 104a28 28 0 1 0 0 39.6a28 28 0 0 0 0-39.6" opacity=".2"/><path d="m205.66 61.64l-144 144a8 8 0 0 1-11.32-11.32l144-144a8 8 0 0 1 11.32 11.31Zm-155.12 39.8a36 36 0 0 1 50.92-50.91a36 36 0 0 1-50.92 50.91M56 76a20 20 0 1 0 34.14-14.16A20 20 0 0 0 56 76m160 104a36 36 0 1 1-10.54-25.46A35.76 35.76 0 0 1 216 180m-16 0a20 20 0 1 0-5.86 14.14A19.87 19.87 0 0 0 200 180"/></g></svg>');
background-color: #10b981;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="&"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="&"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="&"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="&"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="&"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="&"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 14 14"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M12.753 13.33c-.846-.725-2.299-1.89-3.837-3.21m0 0C7.467 8.873 5.942 7.49 4.774 6.201m4.142 3.917l-2.749 2.587A2.92 2.92 0 1 1 2.26 8.37l2.514-2.167m4.142 3.917l1.691-1.591M4.774 6.202C3.595 4.9 2.782 3.697 2.782 2.834C2.782.796 4.284.5 5.164.5c1.287 0 2.341.76 2.341 2.334c0 1.05-2.261 2.963-2.261 2.963z"/></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 14 14"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M12.753 13.33c-.846-.725-2.299-1.89-3.837-3.21m0 0C7.467 8.873 5.942 7.49 4.774 6.201m4.142 3.917l-2.749 2.587A2.92 2.92 0 1 1 2.26 8.37l2.514-2.167m4.142 3.917l1.691-1.591M4.774 6.202C3.595 4.9 2.782 3.697 2.782 2.834C2.782.796 4.284.5 5.164.5c1.287 0 2.341.76 2.341 2.334c0 1.05-2.261 2.963-2.261 2.963z"/></svg>');
background-color: #f59e0b;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="*"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="*"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="*"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="*"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="*"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="*"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M200 128a72 72 0 1 1-72-72a72 72 0 0 1 72 72" opacity=".2"/><path d="M214.86 180.12a8 8 0 0 1-11 2.74L136 142.13V216a8 8 0 0 1-16 0v-73.87l-67.88 40.73a8 8 0 1 1-8.23-13.72L112.45 128L43.89 86.86a8 8 0 1 1 8.23-13.72L120 113.87V40a8 8 0 0 1 16 0v73.87l67.88-40.73a8 8 0 1 1 8.23 13.72L143.55 128l68.56 41.14a8 8 0 0 1 2.75 10.98"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M200 128a72 72 0 1 1-72-72a72 72 0 0 1 72 72" opacity=".2"/><path d="M214.86 180.12a8 8 0 0 1-11 2.74L136 142.13V216a8 8 0 0 1-16 0v-73.87l-67.88 40.73a8 8 0 1 1-8.23-13.72L112.45 128L43.89 86.86a8 8 0 1 1 8.23-13.72L120 113.87V40a8 8 0 0 1 16 0v73.87l67.88-40.73a8 8 0 1 1 8.23 13.72L143.55 128l68.56 41.14a8 8 0 0 1 2.75 10.98"/></g></svg>');
background-color: #3b82f6;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="-"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="-"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="-"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="-"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="-"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="-"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 56v144a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V56a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M224 128a8 8 0 0 1-8 8H40a8 8 0 0 1 0-16h176a8 8 0 0 1 8 8"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 56v144a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V56a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M224 128a8 8 0 0 1-8 8H40a8 8 0 0 1 0-16h176a8 8 0 0 1 8 8"/></g></svg>');
background-color: #ef4444;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="+"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="+"] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="+"] .task-list-item-checkbox:hover::after {
background-color: #737373;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="+"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="+"] .task-list-item-checkbox:after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="+"] .task-list-item-checkbox:after {
border: 1px solid transparent;
-webkit-mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 56v144a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V56a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M224 128a8 8 0 0 1-8 8h-80v80a8 8 0 0 1-16 0v-80H40a8 8 0 0 1 0-16h80V40a8 8 0 0 1 16 0v80h80a8 8 0 0 1 8 8"/></g></svg>');
mask-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M216 56v144a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V56a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" opacity=".2"/><path d="M224 128a8 8 0 0 1-8 8h-80v80a8 8 0 0 1-16 0v-80H40a8 8 0 0 1 0-16h80V40a8 8 0 0 1 16 0v80h80a8 8 0 0 1 8 8"/></g></svg>');
background-color: #22c55e;
}
body.enable-alternative-checkboxes .markdown-source-view.is-live-preview .HyperMD-task-line[data-task="="] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .markdown-rendered .task-list-item[data-task="="] .task-list-item-checkbox:hover::after, body.enable-alternative-checkboxes .style-settings-container .task-list-item[data-task="="] .task-list-item-checkbox:hover::after {
background-color: #737373;