forked from SlRvb/Obsidian--ITS-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobsidian.css
8077 lines (7290 loc) · 598 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
/* @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: 2
-
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: 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: Specific View Heading Changes
description: Change Headings in preview/edit mode
id: Heading-Specific
type: heading
level: 3
collapsed: true
-
title: Specific Heading Adjustments
description: Toggle on to edit headings individually.
id: head-spec
type: class-toggle
-
title: Heading Fonts
id: Spec-Font-Head
type: heading
level: 4
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'"
-
title: Heading 6 Font Preview
id: sphd-pre-ff-6
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading 6 Font Editor
id: sphd-ed-ff-6
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Suez One', 'serif'"
-
title: Heading Size
id: Spec-Size-Head
type: heading
level: 4
collapsed: true
-
title: Heading 1 Size Preview
id: sphd-pre-fs-1
type: variable-number-slider
default: 34
format: px
min: 18
max: 40
step: 2
-
title: Heading 1 Size Editor
id: sphd-ed-fs-1
type: variable-number-slider
default: 34
format: px
min: 18
max: 40
step: 2
-
title: Heading 2 Size Preview
id: sphd-pre-fs-2
type: variable-number-slider
default: 30
format: px
min: 18
max: 40
step: 2
-
title: Heading 2 Size Editor
id: sphd-ed-fs-2
type: variable-number-slider
default: 28
format: px
min: 18
max: 40
step: 2
-
title: Heading 3 Size Preview
id: sphd-pre-fs-3
type: variable-number-slider
default: 26
format: px
min: 18
max: 40
step: 2
-
title: Heading 3 Size Editor
id: sphd-ed-fs-3
type: variable-number-slider
default: 24
format: px
min: 18
max: 40
step: 2
-
title: Heading 4 Size Preview
id: sphd-pre-fs-4
type: variable-number-slider
default: 24
format: px
min: 18
max: 40
step: 2
-
title: Heading 4 Size Editor
id: sphd-ed-fs-4
type: variable-number-slider
default: 22
format: px
min: 18
max: 40
step: 2
-
title: Heading 5 Size Preview
id: sphd-pre-fs-5
type: variable-number-slider
default: 20
format: px
min: 18
max: 40
step: 2
-
title: Heading 5 Size Editor
id: sphd-ed-fs-5
type: variable-number-slider
default: 20
format: px
min: 18
max: 40
step: 2
-
title: Heading 6 Size Preview
id: sphd-pre-fs-6
type: variable-number-slider
default: 18
format: px
min: 18
max: 40
step: 2
-
title: Heading 6 Size Editor
id: sphd-ed-fs-6
type: variable-number-slider
default: 18
format: px
min: 18
max: 40
step: 2
-
title: Heading Colors
id: Spec-Colors-Head
type: heading
level: 4
collapsed: true
-
title: Heading 1 Color Preview
id: sphd-pre-1
type: variable-themed-color
format: hex
default-dark: '#7c2929'
default-light: '#bb5555'
-
title: Heading 1 Color Editor
id: sphd-ed-1
type: variable-themed-color
format: hex
default-dark: '#7c2929'
default-light: '#bb5555'
-
title: Heading 2 Color Preview
id: sphd-pre-2
type: variable-themed-color
format: hex
default-dark: '#652121'
default-light: '#a13531'
-
title: Heading 2 Color Editor
id: sphd-ed-2
type: variable-themed-color
format: hex
default-dark: '#652121'
default-light: '#a13531'
-
title: Heading 3 Color Preview
id: sphd-pre-3
type: variable-themed-color
format: hex
default-dark: '#571d1d'
default-light: '#862c2c'
-
title: Heading 3 Color Editor
id: sphd-ed-3
type: variable-themed-color
format: hex
default-dark: '#571d1d'
default-light: '#862c2c'
-
title: Heading 4 Color Preview
id: sphd-pre-4
type: variable-themed-color
format: hex
default-dark: '#381919'
default-light: '#662828'
-
title: Heading 4 Color Editor
id: sphd-ed-4
type: variable-themed-color
format: hex
default-dark: '#381919'
default-light: '#662828'
-
title: Heading 5 Color Preview
id: sphd-pre-5
type: variable-themed-color
format: hex
default-dark: '#424c61'
default-light: '#697795'
-
title: Heading 5 Color Editor
id: sphd-ed-5
type: variable-themed-color
format: hex
default-dark: '#424c61'
default-light: '#697795'
-
title: Heading 6 Color Preview
id: sphd-pre-6
type: variable-themed-color
format: hex
default-dark: '#2e333d'
default-light: '#8a92a3'
-
title: Heading 6 Color Editor
id: sphd-ed-6
type: variable-themed-color
format: hex
default-dark: '#2e333d'
default-light: '#8a92a3'
-
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: Wrap Note Title
id: title-wrap
type: class-toggle
-
title: Flat Note Title Color
id: nt-g
type: class-toggle
-
title: Display Folder Arrow On Hover
id: fhvr
type: class-toggle
-
title: Raise Right Sidebar
description: Raise the right sidebar if the status bar is covering part of it.
id: rsb-up
type: class-toggle
-
title: Hide Outline Pane H
id: op-h
type: class-toggle
-
title: Disable Settings Animation
id: n-s-ani
type: class-toggle
-
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 Scrollbars
id: scroll-size
type: variable-number-slider
default: 7
format: px
min: 0
max: 15
step: 1
-
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:
id: f-s-sb
type: variable-number-slider
default: 16
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: Justify Text
description: Justify preview and editor text
id: justified
type: class-toggle
-
title: Centered Tables
description: Move all tables to the center of the page.
id: t-c
type: class-toggle
-
title: Center Images
description: Center images by default
id: imgctr
type: class-toggle
-
title: Horizontal Line
id: hztl-ln
type: heading
level: 3
collapsed: true
-
title: Horizontal Line Symbol
description: Add quotations around symbol for it to work. For Example "⚡". Use the codepoint for symbols from supported font icons. For Example "\e800".
id: hr-sym
type: variable-text
default: '⚡'
-
title: Horizontal Line Symbol Fonts
description: Font Icons. Default font aligns emojis.
id: hr-f
type: variable-select
default: its
options:
- its
- Material Icons Sharp
- remixicon
- fa5
- default-font
-
title: No Horizontal Line Symbol
description: Hide the horizontal Line Symbol entirely
id: hr-tog
type: class-toggle
-
title: Frontmatter
id: Frontmatter
type: heading
level: 3
collapsed: true
-
title: Minimized Frontmater
id: h-fm
type: class-toggle
-
title: Hide Frontmatter
id: no-m
type: class-toggle
-
title: Notion Style
id: ntn
type: class-toggle
-
title: Embeds
id: Embeds
type: heading
level: 3
collapsed: true
-
title: Naked Embeds
description: Embeds that look like they're part of the note.
id: naked-em
type: class-toggle
-
title: Original Embeds
description: Previous style of embeds
id: org-em
type: class-toggle
-
title: Embed Heading Undo
description: Revert embed headings to the default sizes and colors
id: em-hd
type: class-toggle
-
title: Headers
id: Headers
type: heading
level: 3
collapsed: true
-
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 Underline
id: h-line
type: class-toggle
-
title: Center Headings
id: hc
type: class-toggle
-
title: Center Heading With Lines
description: Center headings and have lines appear at either side of it.
id: hcl
type: class-toggle
-
title: Illusion Theme Inspired Headings
id: illusion
type: class-toggle
-
title: Lists
id: Lists
type: heading
level: 3
collapsed: true
-
title: Colorful Task Text
description: Add color to the text of the task.
id: check-color
type: class-toggle
default: true
-
title: Restore Crossed Checkbox
id: chkbx-strike
type: class-toggle
-
title: Default Bullet Disc Shape
id: def-bull
type: class-toggle
-
title: Bullet Shape
description: Add quotes around your new bullet. For example "~"
id: bullet
type: variable-text
default: '⬥'
-
title: 1 Color Bullets & Lines
description: Bullet and Line colors no longer alternates. Bullet color is set to Accent 2.
id: bl-c
type: class-toggle
-
title: Original Bullet Lines
description: Lines appear under bullet, not beside it. Won't connect to bullet if it's longer than 1 line.
id: b-li-o
type: class-toggle
-
title: Line Size
id: b-line
type: variable-number-slider
default: 2
format: px
min: 0
max: 3
step: 1
-
title: Live Preview Alternate Indent Style
description: Alternate style to differentiate lists sublevels in edit mode on cm6.
id: alt-ind
type: class-toggle
-
title: Colorful Lists
id: Bullet-Line-Color
type: heading
level: 4
collapsed: true
-
title: Colorful Bullet Line Color
description: Toggle on to use colorful bullet lines
id: bul-li-col
type: class-toggle
-
title: Colorful Bullet Color
description: Toggle on to use colorful bullets
id: bul-col
type: class-toggle
-
title: Neon Lines
description: Toggle on for lines to have a neon glow effect
id: bul-li-neon
type: class-toggle
-
title: Bullet Line 1 Color
id: b-l-1
type: variable-themed-color
format: hex
default-dark: '#7c2929'
default-light: '#e45858'
-
title: Bullet Line 2 Color
id: b-l-2
type: variable-themed-color
format: hex
default-dark: '#a56146'
default-light: '#fd9268'
-
title: Bullet Line 3 Color
id: b-l-3
type: variable-themed-color
format: hex
default-dark: '#386b3f'
default-light: '#4fd160'
-
title: Bullet Line 4 Color
id: b-l-4
type: variable-themed-color
format: hex
default-dark: '#3e7779'
default-light: '#43bfc3'
-
title: Bullet Line 5 Color
id: b-l-5
type: variable-themed-color
format: hex
default-dark: '#435aa5'
default-light: '#5c7eee'
-
title: Bullet Line 6 Color
id: b-l-6
type: variable-themed-color
format: hex
default-dark: '#687286'
default-light: '#adbad3'
-
title: Tags
id: Tags
type: heading
level: 3
collapsed: true
-
title: Bubble Tags
id: tag-bubble
type: class-toggle
-
title: Notion Tags
id: tag-notion
type: class-toggle
-
title: Outline Tags
id: tag-outline
type: class-toggle
-
title: Tag Outline Border Size
id: tag-o
type: variable-number-slider
default: 1
format: px
min: 0
max: 5
step: 1
-
title: Tag Font Size Toggle
id: tg-f
type: class-toggle
-
title: Tag Font Size
id: f-tag
type: variable-number-slider
default: 13
format: px
min: 8
max: 20
step: 1
-
title: Colors
id: Other Colors
type: heading
level: 2
collapsed: true
-
title: Text
description: Change text colors
id: text-colors
type: heading
level: 3
collapsed: true
-
title: Text
id: text
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Faint Text
id: soft-text
type: variable-themed-color
format: hex
default-dark: '#aab3ca'
default-light: '#d04e4e'
-
title: Headings
description: Heading, Vault title, HR Symbol, blockquote quotation mark, and open folder icon colors.
id: headers
type: variable-themed-color
format: hex
default-dark: '#c14343'
default-light: '#d04e4e'
-
title: File Title
description: File text color.
id: file
type: variable-themed-color
format: hex
default-dark: '#aab3ca'
default-light: '#7e8ea3'
-
title: Code Text
id: code-text
type: variable-themed-color
format: hex
default-dark: '#fa4545'
default-light: '#ea4262'
-
title: "`<i></i>` Text"
description: "Html `<i></i>` text color."
id: i-at
type: variable-themed-color
format: hex
default-dark: '#bf5e5e'
default-light: '#c14343'
-
title: Footnotes
id: footnote
type: variable-themed-color
format: hex
default-dark: '#6e7e89'
default-light: '#8996a0'
-
title: Workspace
description: Recolor some UI colors
id: Workspace-Colors
type: heading
level: 3
collapsed: true
-
title: Note
description: Note and sidebar colors.
id: note
type: variable-themed-color
format: hex
default-dark: '#1a1e24'
default-light: '#f8fbff'