-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
obsidian.css
16026 lines (14638 loc) · 859 KB
/
obsidian.css
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";
/* @settings
name: In The Shadows Settings
id: ITS
settings:
-
title: Text
id: Text-CSS
type: heading
level: 2
collapsed: true
-
title: Fonts
description: Change ITS Theme fonts
id: text-fonts
type: heading
level: 3
collapsed: true
-
title: Headings
description: Heading and Vault Title fonts.
id: font
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Book Antiqua', 'Georgia', 'Suez One', serif"
-
title: Vault Font
description: Vault Title Specific Font, otherwise Headings above replaces both.
id: vault-f
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Book Antiqua', 'Georgia', 'Suez One', serif"
-
title: Text
description: Changes text font for preview and edit mode.
id: default-font
type: variable-text
default: "Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Microsoft YaHei Light', sans-serif"
-
title: Monospace
id: font-monospace
type: variable-text
default: "'Fira Code Medium', 'Source Code Pro', monospace"
-
title: Font Ligatures
description: (Depends On Font) Text combines into symbols ie. - - > becomes -->.
id: lig
type: class-toggle
-
title: Size
description: Change text size and/or margin spacing
id: text-size
type: heading
level: 3
collapsed: true
-
title: Mobile Note Text Size
description: Toggle on to use the resize on mobile.
id: ntsz
type: class-toggle
-
title: Note Text Size
description: Adjust size for preview/editor mode. If you use the one below, this only affects editor mode.
id: nt-f
type: variable-number-slider
default: 16
format: px
min: 10
max: 20
step: 1
-
title: Note Text Weights
id: f-w-t
type: variable-number-slider
default: 500
min: 100
max: 700
step: 100
-
title: Header Weights
id: f-w-h
type: variable-number-slider
default: 600
min: 100
max: 900
step: 100
-
title: Header Height
id: head-h
type: variable-number-slider
default: 15
format: px
min: 0
max: 30
step: 5
-
title: Line Height
id: lh
type: variable-number-slider
default: 1.5
format: em
min: 1
max: 2
step: .1
-
title: Vault Title Weight
id: f-w-v
type: variable-number-slider
default: 600
min: 100
max: 900
step: 100
-
title: Specific View Changes
description: Change text in both preview/edit mode or change it for either mode separately
id: Font-Specific
type: heading
level: 3
collapsed: true
-
title: Different Preview/Editor Text
description: If toggled on, Text only affects UI text.
id: ed-pre
type: class-toggle
-
title: Preview Text
description: Changes text font for preview mode.
id: pre-font
type: variable-text
default: "Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Microsoft YaHei Light', sans-serif"
-
title: Editor Text
description: Changes text font for edit mode.
id: ed-font
type: variable-text
default: "Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Microsoft YaHei Light', sans-serif"
-
title: Preview Text Size
description: Adjust size for preview mode.
id: f-s-pre
type: variable-number-slider
default: 16
format: px
min: 10
max: 24
step: 2
-
title: Specific Decoration Changes
description: Change bold, italic, strikethrough elements
id: Dec-Spec
type: heading
level: 3
collapsed: true
-
title: Different Preview/Editor Decorations
description: Toggle on to use different styles for italics, bold, and strikethrough
id: text-spec
type: class-toggle
-
title: Specific Decoration Fonts
id: Dec-Spec-Fonts
type: heading
level: 4
collapsed: true
-
title: Preview Italic Font
id: em-pre-f
type: variable-text
default: "Inter, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif"
-
title: Editor Italic Font
id: em-ed-f
type: variable-text
default: "Inter, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif"
-
title: Preview Bold Font
id: b-pre-f
type: variable-text
default: "Inter, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif"
-
title: Editor Bold Font
id: b-ed-f
type: variable-text
default: "Inter, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif"
-
title: Preview Strikethrough Font
id: del-pre-f
type: variable-text
default: "Inter, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif"
-
title: Editor Strikethrough Font
id: del-ed-f
type: variable-text
default: "Inter, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif"
-
title: Specific Decoration Colors
id: Dec-Spec-Colors
type: heading
level: 4
collapsed: true
-
title: Preview Italic Color
id: em-pre-c
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Editor Italic Color
id: em-ed-c
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Preview Bold Color
id: b-pre-c
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Editor Bold Color
id: b-ed-c
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Preview Strikethrough Color
id: del-pre-c
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Editor Strikethrough Color
id: del-ed-c
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Workspace
id: WS-CSS
type: heading
level: 2
collapsed: true
-
title: Remove ITS Theme Icons
id: its-i
type: class-toggle
default: false
-
title: Disable Settings Animation
id: n-s-ani
type: class-toggle
-
title: Hide Outline Pane H
id: op-h
type: class-toggle
-
title: Raise Right Sidebar & Doc Search
description: Raise the right sidebar and the document search modal above the status bar.
id: rsb-up
type: class-toggle
-
title: Wide Status Bar
description: Undo the floating status bar
id: o-stat-bar
type: class-toggle
-
title: Background Image
id: background-image
type: heading
level: 3
collapsed: true
-
title: Background Image
description: Toggle to apply background image to vault
id: bg-image
type: class-toggle
-
title: Background Image
id: bg-image-url
type: variable-text
default: "url()"
-
title: Background Position Height
id: bg-img-h
type: variable-number-slider
format: "%"
default: 50
min: 0
max: 100
step: 1
-
title: Background Position Width
id: bg-img-w
type: variable-number-slider
format: "%"
default: 50
min: 0
max: 100
step: 1
-
title: Image Blur
id: bg-blur
type: variable-number-slider
format: px
default: 11
min: 0
max: 20
step: 1
-
title: Note Opacity
id: bg-opacity
type: variable-number-slider
format: "%"
default: 90
min: 20
max: 100
step: 1
-
title: Side Panel Opacity
id: bg-sd-opacity
type: variable-number-slider
format: "%"
default: 90
min: 20
max: 100
step: 1
-
title: Sidebar
id: sidebar-styling
type: heading
level: 3
collapsed: true
-
title: Bottom Navbar Buttons
id: btm-nav
type: class-toggle
-
title: Mobile Style Sidebars
id: mbl-sidebar
type: class-toggle
-
title: Tab Styling
id: sidebar-tab-styling
type: heading
level: 4
-
title: Wide Sidebar Tabs
id: wide-sb-tabs
type: class-toggle
-
title: Sidebar Tabs Original Style
id: sb-tabs-original
type: class-toggle
-
title: Sidebar Tabs Underline Style
id: sb-tabs-underline
type: class-toggle
-
title: Sidebar Tabular Style
id: tabs-sidebar
type: class-toggle
-
title: Sidebar Ribbon
id: sidebar-ribbon-styling
type: heading
level: 4
-
title: Thin Sidebar Ribbons
id: thin-ribbon
type: class-toggle
-
title: Floating Sidebar Ribbon
id: float-sidebar
type: class-select
allowEmpty: true
default: none
options:
-
label: Plain
value: sd-float
-
label: Minimized
value: sd-mini-float
-
title: Floating Sidebar Positions
id: float-sidebar-position
type: class-select
allowEmpty: false
default: Top
options:
-
label: Top
value: sd-flt-top
-
label: Bottom
value: sd-flt-btm
-
title: Hide Left Sidebar Actions
id: sidebar-action-display
type: class-select
allowEmpty: true
default: none
options:
-
label: Hide Unless Hovered
value: sd-h-act-hvr
-
label: Hide Completely
value: sd-h-act
-
title: Sidebar Opacity
id: sd-opacity
type: variable-number-slider
default: 40
format: "%"
min: 30
max: 100
step: 5
-
title: File Explorer
id: file-explorer-styling
type: heading
level: 3
collapsed: true
-
title: Display Folder Arrow
id: folder-arrow
type: class-toggle
-
title: Display Folder Arrow On Hover
id: fhvr
type: class-toggle
-
title: Add Vault Title Icon
id: vlt-icon
type: class-toggle
-
title: Vault Image
id: vlt-icon-img
type: variable-text
default: "url()"
-
title: Folder Icon
id: folder-icon
type: variable-text
default: '"\e801"'
-
title: Folder Font Family
id: folder-f
type: variable-text
default: 'its'
-
title: File Icon
id: file-icon
type: variable-text
default: '"\e800"'
-
title: File Font Family
id: file-f
type: variable-text
default: 'its'
-
title: Minimalist Workspace
description: Hide UI unless hovered over the edges of the app.
id: min-wrkspce
type: heading
level: 3
collapsed: true
-
title: Writing
description: Minimalistic/distraction free layout design for notes.
id: writing
type: class-toggle
-
title: Hide All UI
description: Hide everything listed below with just 1 toggle
id: h-wksp
type: class-toggle
-
title: Hide Resize Handles
id: h-rh
type: class-toggle
-
title: Dim Scrollbars
description: Recommend increasing the scrollbar width with this
id: scrl-d
type: class-toggle
-
title: Hide Vault Name
id: v-non
type: class-toggle
-
title: Hide File Explorer/Search Buttons
id: h-fexp
type: class-toggle
-
title: Hide Sidebar Tab Icons
id: h-tab-i
type: class-toggle
-
title: Hide Ribbon
id: h-rib
type: class-toggle
-
title: Hide Note Title
id: h-nt
type: class-toggle
-
title: Hide Note Title Icons
id: h-nt-i
type: class-toggle
-
title: Hide Title Bar
id: h-titlebar
type: class-toggle
-
title: Hide Status Bar
id: h-stbr
type: class-toggle
-
title: Workspace Resize
description: Resize UI Elements (Scrollbar, Menu, Sidebars, Note Titlebars)
id: WS-Resize
type: heading
level: 3
collapsed: true
-
title: Resize Settings Menu Width
id: setting-w
type: variable-number-slider
default: 55
format: vw
min: 40
max: 100
step: 5
-
title: Resize Settings Menu Height
id: setting-h
type: variable-number-slider
default: 90
format: vh
min: 40
max: 100
step: 5
-
title: Resize Scrollbars
id: scroll-size
type: variable-number-slider
default: 7
format: px
min: 0
max: 15
step: 1
-
title: Note Width
description: Resize note width when readable line length toggled on.
id: note-width
type: variable-number-slider
default: 700
format: px
min: 500
max: 1500
step: 50
-
title: Workspace UI Resize
description: Resize UI Elements
id: WS-UI-Resize
type: heading
level: 4
-
title: Toggle Resize
description: Toggle to resize UI Elements. (Not necessary for Resize Scrollbars)
id: resize
type: class-toggle
-
title: Menu Text Size
description: Adjust the size for the menus, ie. Settings, Quick Switcher, etc.
id: f-s-ui
type: variable-number-slider
default: 16
format: px
min: 12
max: 20
step: 1
-
title: Sidebar Text Size
description: Resize side panel text
id: f-s-sb
type: variable-number-slider
default: 16
format: px
min: 12
max: 20
step: 1
-
title: Sidebar Ribbon Width
description: Resize sidebar ribbon width
id: s-rib-pad
type: variable-number-slider
default: 18
format: px
min: 10
max: 25
step: 1
-
title: Sidebar Ribbon Icon Size
description: Resize sidebar Ribbon icons
id: f-s-rib-i
type: variable-number-slider
default: 18
format: px
min: 12
max: 22
step: 1
-
title: Sidebar Tab Icon Size
description: Resize sidebar tab icons
id: f-s-tab-i
type: variable-number-slider
default: 17
format: px
min: 12
max: 20
step: 1
-
title: Note Title Size
description: Adjust the size for the note titles.
id: f-s-nt
type: variable-number-slider
default: 16
format: px
min: 12
max: 20
step: 1
-
title: Note Elements
id: Other-Note
type: heading
level: 2
collapsed: true
-
title: Document
description: Emulation of microsoft document look.
id: writing-document
type: class-toggle
-
title: Justify Text
description: Justify preview and editor text
id: justified
type: class-toggle
-
title: Center Images
description: Center images by default
id: imgctr
type: class-toggle
-
title: Disable Codeblock Wrapping
id: unwrap-codeblock
type: class-toggle
-
title: Disable Triple Blockquote Syntax
id: dis-tri-quote
type: class-toggle
default: true
-
title: Crop Image Height In Popover
description: ⚠ Warning, might have some unintended consequences
id: crop-img
type: class-toggle
-
title: Note Title
id: note-title
type: heading
level: 3
collapsed: true
-
title: Wrap Note Title
id: title-wrap
type: class-toggle
-
title: Flat Note Title Color
id: nt-g
type: class-toggle
-
title: No Note Title Background Color
id: nt-clear
type: class-toggle
-
title: Underline Style Note Title
id: nt-underline
type: class-toggle
-
title: Overline Style Note Title
id: nt-overline
type: class-toggle
-
title: Headers
id: Headers
type: heading
level: 3
collapsed: true
-
title: Center Headings
description: Center ALL headings
id: Header-Center
type: class-select
allowEmpty: true
default: none
options:
-
label: Center Heading Text
value: hc
-
label: Center Heading With Lines
value: hcl
-
title: Header Tags Above Header
description: Move the editor header hastags # to above the header instead.
id: hash-top
type: class-toggle
-
title: Hide Header Indicator
id: hd-indi
type: class-toggle
-
title: Undo Mini Header Hash Styling
description: Header hash matches header font size and matches color.
id: hash-reg
type: class-toggle
-
title: Header Color Override
description: Header color always applied over other markdown in the header
id: hd-ovr
type: class-toggle
-
title: Heading Underlines
description: Remove heading underlines.
id: Spec-Underline-Head
type: heading
level: 4
collapsed: true
-
title: Hide Header Underline
description: Hide ALL header underlines.
id: h-line
type: class-toggle
-
title: Hide H1 Underline
id: sphd-und-1
type: class-toggle
default: false
-
title: Hide H2 Underline
id: sphd-und-2
type: class-toggle
default: false
-
title: Hide H3 Underline
id: sphd-und-3
type: class-toggle
default: false
-
title: Hide H4 Underline
id: sphd-und-4
type: class-toggle
default: false
-
title: Hide H5 Underline
id: sphd-und-5
type: class-toggle
default: false
-
title: Hide H6 Underline
id: sphd-und-6
type: class-toggle
default: false
-
title: Header Background Color
id: Header-BG
type: heading
level: 4
collapsed: true
-
title: Header Borders
id: header-borders
type: class-toggle
-
title: Header Border Width
id: h-brdr
type: variable-number-slider
format: px
default: 2
min: 0
max: 5
step: 1
-
title: Header Border Colors
id: Spec-Colors-Head
type: heading
level: 5
collapsed: true
-
title: Heading 1 Border Color
id: h1-b-c
type: variable-themed-color
format: hex
default-dark: '#7c2929'
default-light: '#bb5555'
-
title: Heading 2 Border Color
id: h2-b-c
type: variable-themed-color
format: hex
default-dark: '#652121'
default-light: '#a13531'
-
title: Heading 3 Border Color
id: h3-b-c
type: variable-themed-color
format: hex
default-dark: '#571d1d'
default-light: '#862c2c'
-
title: Heading 4 Border Color
id: h4-b-c
type: variable-themed-color
format: hex
default-dark: '#381919'
default-light: '#662828'
-
title: Heading 5 Border Color
id: h5-b-c
type: variable-themed-color
format: hex
default-dark: '#424c61'
default-light: '#697795'
-
title: Heading 6 Border Color
id: h6-b-c
type: variable-themed-color
format: hex
default-dark: '#2e333d'
default-light: '#8a92a3'
-
title: Illusion Style Headers
id: illusion-headers
type: heading
level: 4
collapsed: true
-
title: Illusion Theme Inspired Headings
id: illusion
type: class-toggle
-
title: Illusion Hide Box Shadow
id: illusion-bxsh
type: class-toggle
-
title: 1 Header Illusion Color
id: illusion-one
description: Set all illusion styled headings to 1 color
type: class-toggle
-
title: Illusion Heading Background Color
id: h-illusion-bg
type: variable-themed-color
format: hex
default-dark: '#c14343'
default-light: '#c14343'
-
title: Illusion Background Colors
id: illusion-headers
type: heading
level: 5
collapsed: true
-
title: Illusion Heading 1 Background Color
id: h1-illusion
type: variable-themed-color
format: hex
opacity: true
default-dark: '#7c2929'
default-light: '#bb5555'
-
title: Illusion Heading 2 Background Color
id: h2-illusion
type: variable-themed-color
format: hex
opacity: true
default-dark: '#652121'
default-light: '#a53f3f'
-
title: Illusion Heading 3 Background Color
id: h3-illusion
type: variable-themed-color
format: hex
opacity: true
default-dark: '#471d1d'
default-light: '#862c2c'
-
title: Illusion Heading 4 Background Color
id: h4-illusion
type: variable-themed-color
format: hex
opacity: true
default-dark: '#381919'
default-light: '#662828'
-
title: Illusion Heading 5 Background Color
id: h5-illusion
type: variable-themed-color
format: hex
opacity: true
default-dark: '#424c61'
default-light: '#697795'
-
title: Illusion Heading 6 Background Color
id: h6-illusion
type: variable-themed-color
format: hex
opacity: true
default-dark: '#2e333d'
default-light: '#8a92a3'
-
title: Specific View Heading Changes
description: Change Headings in preview/edit mode
id: Heading-Specific
type: heading
level: 4
collapsed: true
-
title: Specific Heading Adjustments
description: Toggle on to edit headings individually.
id: head-spec
type: class-toggle
-
title: Specific Heading Notes Only
description: Toggle on to only affect notes. (Disable Adjustments toggle)
id: head-spec-note
type: class-toggle
-
title: Heading Fonts
id: Spec-Font-Head
type: heading
level: 5
collapsed: true
-
title: Heading 1 Font Preview
id: sphd-pre-ff-1
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 1 Font Editor
id: sphd-ed-ff-1
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 2 Font Preview
id: sphd-pre-ff-2
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 2 Font Editor
id: sphd-ed-ff-2
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 3 Font Preview
id: sphd-pre-ff-3
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 3 Font Editor
id: sphd-ed-ff-3
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 4 Font Preview
id: sphd-pre-ff-4
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 4 Font Editor
id: sphd-ed-ff-4
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 5 Font Preview
id: sphd-pre-ff-5
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 5 Font Editor
id: sphd-ed-ff-5
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"