forked from SlRvb/Obsidian--ITS-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.css
14007 lines (13228 loc) · 792 KB
/
theme.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: ITS Theme Settings
id: ITS
settings:
-
id: info-text-SlRvb-ITS-Theme
type: info-text
title: "ITS Theme by SlRvb"
description: "ℹ [Guide / Docs](https://publish.obsidian.md/slrvb-docs/ITS+Theme/ITS+Theme) | ⚙ [Github](https://github.com/SlRvb/Obsidian--ITS-Theme) | ☕ [Support](https://ko-fi.com/slrvb)"
markdown: true
-
id: its-theme
title: ITS Theme Class
type: class-toggle
default: true
#-
# title: Class Test toggle
# id: minimalist-workspace
# type: class-toggle
-
title: Workspace
id: ITS-Workspace
type: heading
level: 1
collapsed: true
-
title: Sizes
id: ITS-Sizes
type: class-select
allowEmpty: true
default: none
options:
-
label: Readable
value: sizing-readable
-
label: Minimized
value: sizing-mini
-
label: Large
value: sizing-large
-
title: Roundness
id: radius-s
type: variable-number-slider
default: 0
format: px
min: 0
max: 12
step: 1
-
title: Resize Scrollbars
id: scrollbar-width
type: variable-number-slider
default: 12
format: px
min: 4
max: 15
step: 1
-
title: Sizing
id: ITS-Sizing
type: heading
level: 2
collapsed: true
-
title: Note Width
id: file-line-width
type: variable-number-slider
default: 700
format: px
min: 400
max: 1800
step: 100
#-
# title: Titlebar Sizing
# id: titlebar-height
# type: variable-number-slider
# default: 40
# format: px
# min: 20
# max: 50
# step: 10
-
title: Tab Outline Height
id: tab-outline-width
type: variable-number-slider
default: 2
format: px
min: 0
max: 4
step: 1
-
title: Status Bar Padding
id: status-bar-padding
type: variable-number-slider
default: 4
format: px
min: 0
max: 10
step: 1
-
title: Status Bar Spacing
id: status-bar-gap
type: variable-number-slider
default: 4
format: px
min: 0
max: 10
step: 1
-
title: Sidebar
id: ITS-Sizing-Sidebar
type: heading
level: 3
collapsed: true
-
title: Sidebar Text Sizing
id: nav-item-size
type: variable-number-slider
default: 14
format: px
min: 10
max: 20
step: 1
-
title: Sidebar Tab Icon Sizing
id: sidebar-tab-icon-size
type: variable-number-slider
default: 18
format: px
min: 10
max: 20
step: 1
-
title: Sidebar Ribbon Width Sizing
id: ribbon-width
type: variable-number-slider
default: 40
format: px
min: 30
max: 50
step: 5
-
title: Sidebar Ribbon Icon Sizing
id: ribbon-icon-size
type: variable-number-slider
default: 18
format: px
min: 10
max: 20
step: 1
-
title: Sidebar Ribbon Icon Spacing
id: ribbon-icon-gap
type: variable-number-slider
default: 15
format: px
min: 1
max: 20
step: 1
-
title: Notes
id: ITS-Note-Sizing
type: heading
level: 3
collapsed: true
-
title: Note Title Size
id: file-header-font-size
type: variable-number-slider
default: 15
format: px
min: 10
max: 20
step: 1
-
title: Note Breadcrumb Title Size
id: file-header-breadcrumb-font-size
type: variable-number-slider
default: 13.5
format: px
min: 10
max: 20
step: 1
-
title: Inline Title Size
id: inline-title-font-size
type: variable-number-slider
default: 34
format: px
min: 10
max: 50
step: 1
-
title: Popover
id: ITS-Sizing-Popover
type: heading
level: 3
collapsed: true
-
title: Popover Width
id: popover-width
type: variable-number-slider
default: 450
format: px
min: 300
max: 1000
step: 100
-
title: Popover Height
id: popover-height
type: variable-number-slider
default: 400
format: px
min: 300
max: 1000
step: 100
-
title: Settings
id: ITS-Settings
type: heading
level: 3
collapsed: true
-
title: Settings Menu Width
id: modal-width
type: variable-number-slider
default: 90
format: vw
min: 40
max: 100
step: 5
-
title: Settings Menu Height
id: modal-height
type: variable-number-slider
default: 85
format: vh
min: 40
max: 100
step: 5
-
title: Titlebar
id: ITS-Titlebar
type: heading
level: 2
collapsed: true
-
title: Titlebar Colors
id: titlebar-colors
type: class-toggle
-
title: Titlebar Bubbles
id: titlebar-bubbles
type: class-toggle
-
title: Tabs
id: ITS-tabs
type: heading
level: 2
collapsed: true
-
title: Tab Widths
id: tab-widths
type: class-select
allowEmpty: true
default: none
options:
-
label: Auto
value: tab-auto
-
label: Wide
value: tab-wide
-
title: Sidebar
id: ITS-Sidebar
type: heading
level: 2
collapsed: true
-
title: Sidebar Tabs Styling
id: ITS-Sidebar-Styling
type: class-select
allowEmpty: true
default: none
options:
-
label: Wide
value: sidebar-tabs-wide
-
label: Underline
value: sidebar-tabs-underline
-
label: Overline
value: sidebar-tabs-overline
-
label: Tabular
value: sidebar-tabs-tabular
-
title: Bottom Navbar Buttons
id: navbar-bottom
type: class-toggle
-
title: Sidebar Ribbon
id: ITS-Sidebar-Ribbon
type: heading
level: 3
-
title: Floating Sidebar Ribbon
id: ITS-Sidebar-Ribbon-Float
type: class-select
allowEmpty: true
default: none
options:
-
label: Plain
value: sidebar-ribbon-float
-
label: Minimized
value: sidebar-ribbon-mini-float
-
title: Floating Sidebar Ribbon
id: ITS-Sidebar-Ribbon-Float-Position
type: class-select
default: sidebar-float-bottom
options:
-
label: Bottom
value: sidebar-float-bottom
-
label: Center
value: sidebar-float-center
-
label: Top
value: sidebar-float-top
-
title: File Explorer
id: ITS-File-Explorer
type: heading
level: 2
collapsed: true
-
title: File Explorer Styling
id: file-explorer-flat
type: class-toggle
-
title: Display Folder Arrow On Hover
id: folder-arrow
type: class-toggle
default: false
-
title: Disable Bold Folder & Hover
description: Remove bold styling from folders & hovering on items
id: file-explorer-boldless
type: class-toggle
-
title: Disable Bold on Hover
description: Remove bold styling from hovering on items
id: file-explorer-boldless-hover
type: class-toggle
-
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: Vault Title
description: Desktop only
id: ITS-Vault-Title
type: heading
level: 2
collapsed: true
-
title: Vault Font
description: Vault Title fonts.
id: vault-font
type: variable-text
default: "'Calisto MT', 'Palatino Black', 'Book Antiqua', 'Georgia', 'Suez One', serif"
-
title: Vault Title Size
id: vault-name-font-size
type: variable-number-slider
default: 20
format: px
min: 10
max: 25
step: 1
-
title: Vault Title Font Weight
id: vault-name-font-weight
type: variable-number-slider
format: px
default: 900
min: 100
max: 900
step: 100
-
title: Vault Title Color
id: vault-name-color
type: variable-themed-color
format: hex
default-dark: '#c14343'
default-light: '#c14343'
-
title: Hide Vault Title
id: vault-title-none
type: class-toggle
-
title: Add Vault Title Icon
id: vault-icon
type: class-toggle
-
title: Vault Image
id: vault-icon-image
type: variable-text
default: "url()"
-
title: Background Image
id: ITS-Background-Image
type: heading
level: 2
collapsed: true
-
title: Background Image
description: Toggle to apply background image to vault
id: background-image
type: class-toggle
-
title: Background Image
id: background-image-url
type: variable-text
default: "url()"
-
title: Background Position Height
id: background-image-height
type: variable-number-slider
format: "%"
default: 50
min: 0
max: 100
step: 1
-
title: Background Position Width
id: background-image-width
type: variable-number-slider
format: "%"
default: 50
min: 0
max: 100
step: 1
-
title: Image Blur
id: background-image-blur
type: variable-number-slider
format: px
default: 11
min: 0
max: 20
step: 1
-
title: Note Opacity
id: background-image-opacity
type: variable-number-slider
format: "%"
default: 90
min: 20
max: 100
step: 1
-
title: Side Panel Opacity
id: background-image-sidebar-opacity
type: variable-number-slider
format: "%"
default: 90
min: 20
max: 100
step: 1
-
title: Minimalist Workspace
description: Hide UI elements unless hovered over.
id: ITS-Minimalist-Workspace
type: heading
level: 2
collapsed: true
-
title: Minimalist Workspace
description: Hide everything listed below with just 1 toggle
id: minimalist-workspace
type: class-toggle
-
title: Hide Resize Handles
id: hide-resize-handle
type: class-toggle
-
title: Hide Scrollbars
id: hide-scrollbar
type: class-toggle
-
title: Hide Sidebar Ribbon
id: hide-sidebar-ribbon
type: class-toggle
-
title: Hide Sidebar Ribbon Icons
id: hide-sidebar-ribbon-icons
type: class-toggle
-
title: Hide Vault Name
id: hide-vault-name
type: class-toggle
-
title: Hide Search/File Explorer Nav Icons
id: hide-nav-header
type: class-toggle
-
title: Hide File Explorer Icons
id: hide-file-explorer-icons
type: class-toggle
-
title: Hide App Title Bar
id: hide-titlebar
type: class-toggle
-
title: Hide Status Bar
id: hide-status-bar
type: class-toggle
-
title: Hide Outline Plugin Heading Icons
id: hide-outline-heading
type: class-toggle
-
title: Hide Tabs
id: hide-titlebar-tab
type: class-toggle
-
title: Hide Tab Outline
id: hide-tab-outline
type: class-toggle
-
title: Hide Note Title Bar
id: hide-note-title
type: class-toggle
-
title: Hide Note Title Bar Icons
id: hide-note-title-icons
type: class-toggle
#-
# title: Hide Frontmatter
# id: hide-frontmatter
# type: class-toggle
-
title: Note
id: ITS-Note
type: heading
level: 1
collapsed: true
-
title: Document
description: Emulation of microsoft document look.
id: writing-document
type: class-toggle
-
title: Paper Shadow
description: Vignette / paper burn option
id: paper
type: class-toggle
-
title: Writing
description: Minimalistic/distraction free layout design for notes.
id: writing
type: class-toggle
-
title: Disable Source View Styling
description: Undo sizing/style fixes to make source view look more like plain text
id: disable-source-styling
type: class-toggle
-
title: Text
id: ITS-Text
type: heading
level: 2
collapsed: true
# -
# title: Note Text Size
# description: Adjust size for text in notes.
# id: font-text-size
# type: variable-number-slider
# default: 16
# format: px
# min: 10
# max: 20
# step: 1
-
title: Justify Text
description: Justify preview and editor text
id: justified
type: class-toggle
-
title: Font Ligatures
description: (Depends On Font) Text combines into symbols ie. - - > becomes -->.
id: lig
type: class-toggle
-
title: Paragraph Spacing
description: Adjust spacing size for "paragraphs". Search "spacing" for more fine tuned adjustments.
id: p-spacing
type: variable-number-slider
default: 1
format: rem
min: 0
max: 2
step: 0.1
-
title: Fonts
id: ITS-Fonts
type: heading
level: 3
collapsed: true
-
title: Text Font
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 Font
id: font-monospace
type: variable-text
default: "'Fira Code Medium', 'Source Code Pro', monospace"
-
title: Comments Font
id: comment-font
type: variable-text
default: "'Fira Code Medium'"
-
title: Advanced Text Decoration
id: ITS-Text-Decoration
type: heading
level: 3
collapsed: true
-
title: Bold Weight
id: bold-weight
type: variable-number-slider
default: 600
min: 100
max: 900
step: 100
-
title: Bold Color
id: bold-color
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Italic Color
id: italic-color
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Strikethrough Text Color
id: strikethrough-color
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Strikethrough Line
id: strikethrough-line-thickness
type: variable-number-slider
default: 1
format: px
min: 1
max: 5
step: 1
-
title: Strikethrough Line Color
id: strikethrough-line-color
type: variable-themed-color
format: hex
default-dark: '#bccad8'
default-light: '#697580'
-
title: Images
id: ITS-Image
type: heading
level: 2
collapsed: true
-
title: Live Preview Image Float
id: lp-img-float
type: class-toggle
-
title: Center Images
description: Center ALL images, excluding those with |left or |right in them.
id: img-adj-center
type: class-toggle
-
title: Clear Images
description: Push image under/over headings or horizontal lines
id: img-adj-clears
type: heading
level: 3
collapsed: false
-
title: Image Captions with Alt Text
description: Make any alt text in image display as an image caption
id: image-caption
type: class-toggle
-
title: Horizontal Lines
description: Push image under/over any horizontal lines
id: clear-hr
type: class-toggle
-
title: Headings
description: Push image under/over all headings 1-6
id: clear-headings
type: class-toggle
-
title: Heading Specific
description: Push image under/over some headings and not others
id: img-adj-clears-headings
type: heading
level: 4
collapsed: true
-
title: Header 1
id: clear-heading-1
type: class-toggle
-
title: Header 2
id: clear-heading-2
type: class-toggle
-
title: Header 3
id: clear-heading-3
type: class-toggle
-
title: Header 4
id: clear-heading-4
type: class-toggle
-
title: Header 5
id: clear-heading-5
type: class-toggle
-
title: Header 6
id: clear-heading-6
type: class-toggle
-
title: Note Title
id: ITS-Note-Title
type: heading
level: 2
collapsed: true
-
title: Note Title Styling
id: ITS-Note-Title-Styling
type: class-select
allowEmpty: true
default: none
options:
-
label: Note Title Gradient
value: file-header-gradient
-
label: Note Title Underline
value: note-title-underline
-
label: Note Title Overline
value: note-title-overline
-
title: Inline Title Styling
id: Inline-Title-Styling
type: class-select
allowEmpty: true
default: Heading
options:
-
label: Heading
value: inline-title-style-heading
-
label: Text
value: inline-title-style-text
-
title: Inline Title Specifics
id: ITS-Inline-Title
type: heading
level: 3
collapsed: true
-
title: Inline Title Sizes
id: Inline-Title-Sizes
type: class-select
allowEmpty: true
default: none
options:
-
label: Small
value: inline-title-small
-
label: Medium
value: inline-title-medium
-
label: Large
value: inline-title-large
-
title: Inline Title Fonts
id: inline-title-font
type: variable-text
default: 'Calisto MT'
-
title: Inline Title Font Weights
id: inline-title-weight
type: variable-number-slider
default: 700
min: 100
max: 900
step: 100
-
title: Inline Title Positions
id: Inline-Title-Positions
type: class-select
allowEmpty: true
default: none
options:
-
label: Left
value: inline-title-position-left
-
label: Center
value: inline-title-position-center
-
label: Right
value: inline-title-position-right
-
title: Headers
id: ITS-Headers
type: heading
level: 2
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: Header Font Weights
id: header-weight
type: variable-number-slider
default: 700
min: 100
max: 900
step: 100
-
title: Header Underline Height
id: header-border-line-height
type: variable-number-slider
default: 4
format: px
min: 0
max: 8
step: 1
-
title: Heading Spacing
description: Adjust header spacing
id: heading-spacing
type: variable-number-slider
default: 10
format: px
min: 0
max: 50
step: 10
-
title: Header Positions
id: ITS-Header-positions
type: class-select
allowEmpty: true
default: none
options:
-
label: Left
value: headings-left
-
label: Center
value: headings-center
-
label: Right
value: headings-right
-
title: Hide Header Underline
description: Hide ALL header underlines.
id: hide-header-underline
type: class-toggle
-
title: Heading Indicators
id: heading-indicator
type: class-toggle
-
title: Heading Styles
description: Heading styling.
id: ITS-Header-Styles
type: heading
level: 3
collapsed: false
-
title: Center Header With Lines
description: Center ALL headings with lines on either side
id: hcl
type: class-toggle
-
title: Header Color Override
description: Header color always applied over other markdown in the header
id: heading-color-override
type: class-toggle
-
title: Illusion Theme Inspired Headings
id: illusion
type: class-toggle
-
title: Advanced Heading Options
id: ITS-Advanced-Header
type: heading
level: 3
collapsed: true
-
title: Heading Top Spacing
description: Adjust header spacing above the header. (Will not apply in LP)
id: heading-spacing-top
type: variable-number-slider
default: 10
format: px
min: 0
max: 50
step: 10
-
title: Heading Bottom Spacing
description: Adjust header spacing below the header. (Will not apply in LP)
id: heading-spacing-bottom
type: variable-number-slider
default: 10
format: px
min: 0
max: 50
step: 10
-
title: Header Font
id: ITS-Header-Fonts
type: heading
level: 4
collapsed: true
-
title: Heading 1
id: h1-font
type: variable-text
default: '"Calisto MT"'
-
title: Heading 2
id: h2-font
type: variable-text
default: '"Calisto MT"'
-
title: Heading 3
id: h3-font
type: variable-text
default: '"Calisto MT"'
-
title: Heading 4
id: h4-font
type: variable-text
default: '"Calisto MT"'
-
title: Heading 5
id: h5-font
type: variable-text
default: '"Calisto MT"'
-