generated from obsidian-community/obsidian-theme-template
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
theme.css
6431 lines (6136 loc) · 707 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";
/* #region [style settings] */
/* @settings
name: 🛠️ Maple Color And Animation
id: maple-basic
settings:
-
id: setting-animation-time
title: Animation Duration (ms)
title.zh: 动画持续时间(毫秒)
type: variable-number-slider
format: ms
default: 200
min: 0
max: 500
step: 50
-
id: color-use-custom
title: Use Custom Accent Color
description: Use style setting accent color instead of Obsidian's accent color
title.zh: 自定义 accent color
description.zh: 使用 style setting 的颜色,而不是 Obsidian 自带的颜色
type: class-toggle
-
id: color-accent-light
title: Light Mode
title.zh: 浅色模式
type: heading
collapsed: true
level: 2
-
id: setting-accent-h-light
title: Base Color
title.zh: 基础颜色
type: variable-number-slider
default: 35
min: 0
max: 360
step: 5
-
id: color-active-light
title: Highlight Color
title.zh: 高亮颜色
type: class-select
allowEmpty: false
default: color-active-default-light
options:
- label: accent color
value: color-active-default-light
- label: accent color alt
value: color-active-alt-light
- label: custom
value: color-active-custom-light
-
id: setting-color-active-custom-light
title: Custom Highlight Color
title.zh: 自定义高亮颜色
type: variable-color
format: rgb
default: '#'
opacity: false
-
id: color-more-light
title: More Configuration
title.zh: 更多设置
type: heading
collapsed: true
level: 3
-
id: setting-accent-s-light
title: Accent Color Saturation
description: S(aturation) of HSL
title.zh: 高亮颜色饱和度
description.zh: HSL 中的 S
type: variable-number-slider
default: 32
format: '%'
min: 0
max: 100
step: 1
-
id: setting-accent-l-light
title: Accent Color Lightness
description: L(ight) of HSL
title.zh: 高亮颜色亮度
description.zh: HSL 中的 L
type: variable-number-slider
default: 58
format: '%'
min: 0
max: 100
step: 1
-
id: color-accent-dark
title: Dark Mode
title.zh: 暗色模式
type: heading
collapsed: true
level: 2
-
id: setting-accent-h-dark
title: Base Color
title.zh: 基础颜色
type: variable-number-slider
default: 207
min: 0
max: 360
step: 5
-
id: color-active-dark
title: Highlight Color
title.zh: 高亮颜色
type: class-select
allowEmpty: false
default: color-active-default-dark
options:
- label: accent color
value: color-active-default-dark
- label: accent color alt
value: color-active-alt-dark
- label: custom
value: color-active-custom-dark
-
id: setting-color-active-custom-dark
title: Custom Highlight Color
title.zh: 自定义高亮颜色
type: variable-color
default: '#'
format: rgb
opacity: false
-
id: color-more-dark
title: More Configuration
title.zh: 更多设置
type: heading
collapsed: true
level: 3
-
id: setting-accent-s-dark
title: Accent Color Saturation
description: S(aturation) of hsl
title.zh: 高亮颜色饱和度
description.zh: HSL 中的 S
type: variable-number-slider
default: 32
format: '%'
min: 0
max: 100
step: 1
-
id: setting-accent-l-dark
title: Accent Color Lightness
description: L(ight) of hsl
title.zh: 高亮颜色亮度
description.zh: HSL 中的 L
type: variable-number-slider
default: 58
format: '%'
min: 0
max: 100
step: 1
-
*/
/* @settings
name: 🌏 Maple Workspace
id: maple-workspace
settings:
-
id: titlebar
title: Obsidian Titlebar
title.zh: Obsidian 标题栏
type: heading
collapsed: true
level: 2
-
id: titlebar-button-style
title: Styled Window Buttons
description: For Windows and Linux
title.zh: 窗体按钮美化
description.zh: 在 Windows 和 Linux 中生效
type: class-toggle
default: true
-
id: titlebar-colorful
title: Colorful Titlebar
description: Reference from https://github.com/kepano/obsidian-minimal
title.zh: 多彩 Obsidian 标题栏
description.zh: 参考 https://github.com/kepano/obsidian-minimal
type: class-toggle
-
id: bg
title: Wave Background
description: Will also add in canvas card when card width > 768px
title.zh: 波浪背景图
description.zh: 白板的卡片宽度 >768px 时编辑卡片也会添加
type: heading
collapsed: true
level: 2
-
id: bg-enable
title: Background Wave Image
description: Static style reference from https://github.com/hydescarf/Obsidian-Theme-Mado-Miniflow, ❗live style will increase CPU/GPU use
title.zh: 背景波浪图
description.zh: 静态图(static)参考 https://github.com/hydescarf/Obsidian-Theme-Mado-Miniflow,❗动态图(live)将提高 CPU/GPU 占用率
type: class-select
allowEmpty: false
default: bg-static
options:
- label: disable
value: bg-default
- label: static
value: bg-static
- label: live
value: bg-live
-
id: setting-bg-color
title: Wave Color
title.zh: 波浪颜色
type: variable-themed-color
format: rgb
opacity: false
default-light: '#'
default-dark: '#'
-
id: explorer
title: File Explorer
title.zh: 文件管理器
type: heading
collapsed: true
level: 2
-
id: explorer-nav-decoration
title: Add Tail Decorator On Active File
description: Reference from https://github.com/Akifyss/obsidian-border
title.zh: 在当前文件末尾添加装饰
description.zh: 参考 https://github.com/Akifyss/obsidian-border
type: class-toggle
-
id: explorer-title-wrap
title: Auto Wrap For Long File Name
title.zh: 为长文件名自动换行
type: class-toggle
-
id: explorer-item-height
title: Item Line Height
title.zh: 行高
type: variable-number-slider
default: 1.6
min: 1.2
max: 1.8
step: 0.1
-
id: explorer-icon
title: Enable Prefix Icon
description: If the tree indent is weird, please collpase all the directory and restart Obsidian
title.zh: 开启前置图标
description.zh: 如果缩进出现问题,请折叠全部文件夹并重启 Obsidian
type: class-toggle
default: true
-
id: setting-color-dirs
title: Directory Color
title.zh: 文件夹颜色
type: variable-themed-color
format: rgb-values
opacity: false
default-light: rgb(245, 180, 0)
default-dark: rgb(245, 180, 0)
-
id: outline-panel
title: Outline Panel
title.zh: 文档大纲
type: heading
collapsed: true
level: 2
-
id: outline-enable
title: Logseq Bullet Thread Style Outline
description: Please reload Obsidian after enable it, reference from https://github.com/pengx17/logseq-dev-theme/blob/main/bullet_threading.css
title.zh: logseq bullet thread 样式的文档视图
description.zh: 启用后请重启应用 参考 https://github.com/pengx17/logseq-dev-theme/blob/main/bullet_threading.css
type: class-toggle
default: true
-
id: status-bar
title: Status Bar
title.zh: 状态栏
type: heading
collapsed: true
level: 2
-
id: status-bar-enable
title: Custom Status Bar Style
title.zh: 自定义状态栏样式
type: class-toggle
default: true
-
id: status-bar-style-float
title: Round Style Status Bar
title.zh: 圆角风格的状态栏
type: class-toggle
default: true
-
id: status-bar-style
title: Status Bar Animation
description: ❗last style only valid when turn on “round status bar”
title.zh: 状态栏样式
description.zh: ❗最后一种样式只在开启“圆角风格的状态栏”才生效
type: class-select
allowEmpty: false
default: status-bar-default
options:
- label: default
value: status-bar-default
- label: show on hover
value: status-bar-hidden
- label: scroll out on hover
value: status-bar-scroll
-
id: status-bar-style-center
title: Center Status Bar
title.zh: 状态栏居中
type: class-toggle
-
id: search-internal
title: Document Search / Replace Panel
title.zh: 文档内搜索框
type: heading
collapsed: true
level: 2
-
id: search-internal-enable
title: Minimal Document Search / Replace Panel (Like VSCode)
title.zh: 精简的文档内搜索框(和 VSCode 类似)
type: class-toggle
default: true
-
id: tab
title: Tab
title.zh: 标签页
type: heading
collapsed: true
level: 2
-
id: tab-float
title: Float Style Tab (Like Firefox / Microsoft Edge)
title.zh: 浮动的标签页(和 Firefox / Microsoft Edge 类似)
type: class-toggle
-
id: tab-slide-up
title: Slide Up Animation On Tab Switch
description: ❗will prevent outline panel update instantly on switch articles
title.zh: 标签页切换动画
description.zh: ❗会导致切换文章时无法立即更新大纲面板
type: class-toggle
default: true
-
id: labeled-nav
title: Text Labels For Primary Navigation
description: Reference from https://github.com/kepano/obsidian-minimal
title.zh: 主导航栏添加文字
description.zh: 参考自 https://github.com/kepano/obsidian-minimal
type: class-toggle
-
id: tab-show-close
title: When To Show Close Button On Tabs
title.zh: 何时显示标签页的关闭按钮
type: class-select
allowEmpty: false
default: tab-show-close-default
options:
- label: default
value: tab-show-close-default
- label: on hover all tabs
value: tab-show-close-all
- label: on hover except active tab
value: tab-show-close-part
-
id: tab-title
title: Tab Title Bar
title.zh: 标签页标题栏
type: heading
level: 3
-
id: tab-title-bar-round
title: Enable Tab Title Bar Round Style
title.zh: 开启标签页标题栏圆角样式
type: class-toggle
-
id: tab-title-bar-shadow
title: Add Shadow For Active Tab Title Bar
title.zh: 为当前标签页标题栏添加阴影
type: class-toggle
-
id: tab-title-bar-text
title: File Name On Tab Title Bar
title.zh: 标签页标题栏的文件名
type: class-select
allowEmpty: false
default: tab-title-bar-text-default
options:
- label: default
value: tab-title-bar-text-default
- label: small size
value: tab-title-bar-text-small
- label: show on hover
value: tab-title-bar-text-hidden
-
id: message
title: Tooltip & Notice
title.zh: 气泡提示框 & 通知
type: heading
collapsed: true
level: 2
-
id: message-tooltip-hide-arrow
title: Hide Tooltip Arrow
title.zh: 隐藏气泡提示框箭头
type: class-toggle
-
id: message-tooltip-hide
title: Always Hide Tooltip
title.zh: 永久隐藏气泡提示框
type: class-toggle
-
id: message-modify
title: Change Tooltip & Notice Color
title.zh: 修改气泡提示框和消息的颜色
type: class-toggle
default: true
-
id: setting-message-bg
title: Background Color
title.zh: 背景色
type: variable-themed-color
format: hsl-values
opacity: false
default-light: '#'
default-dark: '#'
-
id: setting-message-fg
title: Foreground Color
title.zh: 文字色
type: variable-themed-color
format: rgb-values
opacity: false
default-light: '#'
default-dark: '#'
-
id: modal
title: Modal & Setting Panel
title.zh: 弹出框 & 设置面板
type: heading
collapsed: true
level: 2
-
id: modal-blur
title: Enable Modal Background Blur
description: If there is a delay in scrolling, try turning this option off
title.zh: 开启弹出框背景模糊
description.zh: 如果滚动时有卡顿,尝试关闭该选项
type: class-toggle
default: true
-
id: modal-header
title: Add Header For Setting Panel
description: Better with plugin “setting search”, invalid in mobile
title.zh: 为设置面板添加顶部框
description.zh: 配合 setting search 插件使用更佳,移动端无效
type: class-toggle
-
id: setting-modal-header-title
title: Set Modal Header Title
title.zh: 设置面板标题
type: variable-text
default: "'maple 0.8.25'"
-
id: setting-group-title
title: Add Style For Left Navigation Group Title
title.zh: 为左侧选项组标题添加样式
type: class-toggle
default: true
-
id: setting-nav-decoration
title: Styled Active Nav Item
title.zh: 左侧当前设置项美化
type: class-toggle
default: true
-
id: modal-slider
title: Styled Slider Thumb
title.zh: 滑动条按钮美化
type: class-toggle
default: true
-
id: modal-toggle
title: Styled Toggle Button
title.zh: 开关按钮美化
type: class-select
allowEmpty: false
default: modal-toggle-default
options:
- label: default
value: modal-toggle-default
- label: thin
value: modal-toggle-thin
- label: round
value: modal-toggle-round
-
id: modal-animation
title: Modal Bounce Animation
desciption: reference from https://github.com/hydescarf/Obsidian-Theme-Mado-Miniflow
title.zh: 弹出框抖动动画
desciption.zh: 参考 https://github.com/hydescarf/Obsidian-Theme-Mado-Miniflow
type: class-toggle
default: true
-
id: menu-blur
title: Menu Blur
title.zh: 菜单模糊
type: heading
collapsed: true
level: 2
-
id: menu-normal
title: Normal Menu
title.zh: 普通菜单
type: class-toggle
default: true
-
id: menu-suggestion
title: Suggestion Menu
title.zh: 提示菜单
type: class-toggle
default: true
-
id: menu-graph
title: Graph Menu
title.zh: 图谱菜单
type: class-toggle
default: true
-
id: scrollbar
title: Scrollbar
title.zh: 滚动条
type: heading
collapsed: true
level: 2
-
id: scrollbar-hide
title: Always Hide Scrollbar
title.zh: 不显示滚动条
type: class-toggle
-
id: scrollbar-hover
title: Scrollbar Hover Action
title.zh: 鼠标经过时滚动条变化
type: class-select
allowEmpty: false
default: scrollbar-hover-default
options:
- label: default
value: scrollbar-hover-default
- label: accent
value: scrollbar-hover-accent
- label: expand
value: scrollbar-hover-expand
-
id: scrollbar-movein-animation-enable
title: Enable Scrollbar Animation
description: When disabled, always show scrollbar; when enabled, hide scrollbar when the mouse move outside the container
title.zh: 启用滚动条动画
description.zh: 关闭时,一直显示滚动条;开启后,鼠标在容器外时隐藏滚动条
type: class-toggle
default: true
-
id: graph
title: Graph
title.zh: 关系图谱
type: heading
collapsed: true
level: 2
-
id: setting-graph-node
title: Node Color
title.zh: 普通节点颜色
type: variable-themed-color
format: rgb-values
opacity: true
default-light: '#'
default-dark: '#'
-
id: setting-graph-node-unresolved
title: Unresolved Node Color
title.zh: 未连接节点颜色
type: variable-themed-color
format: rgb-values
opacity: true
default-light: '#'
default-dark: '#'
-
id: setting-graph-node-focus
title: Focused Node Color
title.zh: 聚焦节点颜色
type: variable-themed-color
format: rgb-values
opacity: true
default-light: '#'
default-dark: '#'
-
id: export-pdf
title: PDF Export
title.zh: PDF 导出
type: heading
collapsed: true
level: 2
-
id: export-pdf-transparent
title: Transparent Page Background Color
title.zh: 透明页面背景色
type: class-toggle
*/
/* @settings
name: ✏️ Maple Editor
id: maple-editor
settings:
-
id: bg
title: Background
title.zh: 背景
type: heading
collapsed: true
level: 2
-
id: setting-editor-bg
title: Editor Background Color
title.zh: 编辑器背景色
type: variable-themed-color
format: hsl-values
default-light: '#'
default-dark: '#'
-
id: setting-md-container-bg
title: Editor Container Background Color
description: Quote, code block, table and so on
title.zh: 编辑器容器背景色
description.zh: 引用、代码块、表格等
type: variable-themed-color
format: hsl-values
default-light: '#'
default-dark: '#'
-
id: text-line-font
title: Text & Font & Line
title.zh: 文字 & 字体 & 行
type: heading
collapsed: true
level: 2
-
id: font-maple
title: Use "Maple Mono" As Monospace
description: https://github.com/subframe7536/Maple-font
title.zh: 使用 Maple Mono 作为等宽字体
description.zh: https://github.com/subframe7536/Maple-font
type: class-toggle
default: true
-
id: font-fix-latex
title: Fix Latex Italic Absent
description: Latex in my vault often wrong rendered, so i make this setting. If wrong rendered, just toggle it
title.zh: 修复 latex 斜体问题
description.zh: 在我的仓库里经常渲染失败,只能自己打包一份字体进主题了。只要字体不正常,开关一次即可
type: class-toggle
-
id: font-latex-text
title: Use "Text Font" In Non-formula Parts Of Latex
description: ❗only tested in CJK font, maybe not reconcile with latin characters
title.zh: 在 latex 非公式部分使用正文字体
description.zh: 默认的字体比较丑
type: class-toggle
-
id: setting-editor-p-spacing
title: Editor Paragraph Spacing (px)
title.zh: 编辑器段落间隔(px)
type: variable-number-slider
default: 4
format: 'px'
min: 0
max: 20
step: 1
-
id: setting-editor-p-indent
title: Editor Paragraph Indent
description: If 'p-indent' exist in properties.cssclasses, all paragraph will add indent(n times of font size)
title.zh: 编辑器段落缩进
description.zh: 在文档属性的cssclasses中存在 'p-indent' 类时,会为段落添加缩进(字体大小的倍数)
type: variable-number-slider
default: 2
min: 0
max: 4
step: 0.2
-
id: setting-line-height
title: Editor Line Height
description: Multiple of the text size
title.zh: 编辑器行高
description.zh: 文字大小的倍数
type: variable-number-slider
default: 1.8
min: 1.2
max: 2.4
step: 0.1
-
id: setting-file-line-width
title: Editor Line Width
description: Dynamic width — clamp(MinWidth, WidthPercent, MaxWidth)
title.zh: 编辑器行宽
description.zh: 动态宽度 — clamp(最小值, 宽度百分比, 最大值)
type: variable-text
default: clamp(600px, 72%, 850px)
-
id: setting-underline-offset
title: Underline Offset
title.zh: 下划线间距
type: variable-number-slider
default: 2
format: 'px'
min: 0
max: 8
step: 0.5
-
id: line-indicator-enable
title: Hover Line Indicator
description: Reference from https://github.com/Akifyss/obsidian-border, need install version>=1.1.9
title.zh: 鼠标经过行指示器
description.zh: 参考自 https://github.com/Akifyss/obsidian-border, 需要安装版本>=1.1.9
type: class-toggle
default: true
-
id: line-active-enable
title: Active Line Hightlight
title.zh: 当前行高亮
type: class-toggle
default: true
-
id: setting-line-active-color
title: Active Line Color
title.zh: 高亮行颜色
type: variable-themed-color
format: hex
opacity: true
default-light: '#'
default-dark: '#'
-
id: setting-text-normal
title: Editor Text Color
title.zh: 编辑器文字颜色
type: variable-themed-color
format: hex
opacity: true
default-light: '#'
default-dark: '#'
-
id: text-highlight
title: Highlight
title.zh: 高亮
type: heading
collapsed: true
level: 3
-
id: setting-text-highlight-bg
title: Highlight Text Background Color
description: The value can be the value of any background attribute in css
title.zh: 文本高亮背景色
description.zh: 填写的值可以为css中任意 background 属性的值
type: variable-text
default: 'rgba(255, 208, 0, 0.4)'
-
id: setting-text-highlight-color
title: Highlight Text Color
title.zh: 文本高亮文字颜色
type: variable-themed-color
format: hex
opacity: true
default-light: '#'
default-dark: '#'
-
id: setting-text-highlight-radius
title: Highlight Background Radius
description: Format px
title.zh: 高亮背景色圆角大小
description.zh: 单位 px
type: variable-number-slider
default: 4
min: 0
max: 8
step: 1
-
id: text-highlight-all-round
title: Keep Radius When Wrap
description: Except when edit
title.zh: 换行时保持圆角
description.zh: 除了编辑的时候
type: class-toggle
default: true
-
id: text-highlight-margin
title: Add Spacing Around Highlight
title.zh: 增加高亮周围边距
type: class-toggle
-
id: text-bold
title: Bold
title.zh: 粗体
type: heading
collapsed: true
level: 3
-
id: setting-text-bold-color
title: Bold Text Color
title.zh: 粗体颜色
type: variable-themed-color
format: hex
opacity: true
default-light: '#'
default-dark: '#'
-
id: setting-text-bold-style
title: Bold Style
description: Support any css text-decoration property
title.zh: 粗体样式
description.zh: 支持任何 css 的 text-decoration 属性值
type: variable-text
default: "underline dotted"
-
id: setting-text-bold-font
title: Bold Font
title.zh: 粗体字体
type: variable-text
default: "''"
-
id: text-italic
title: Italic
title.zh: 斜体
type: heading
collapsed: true
level: 3
-
id: setting-text-italic-color
title: Italic Text Color
title.zh: 斜体颜色
type: variable-themed-color
format: hex
opacity: true
default-light: '#'
default-dark: '#'
-
id: setting-text-italic-style
title: Italic Style
description: Support any css text-decoration property
title.zh: 斜体样式
description.zh: 支持任何 css 的 text-decoration 属性值
type: variable-text
default: "underline dotted"
-
id: setting-text-italic-font
title: Italic Font
title.zh: 斜体字体
type: variable-text
default: "''"
-
id: links
title: Link
title.zh: 链接
type: heading
collapsed: true
level: 2
-
id: link-hover-expand
title: Use Underline Animation On Hover
title.zh: 鼠标经过时开启下划线动画
type: class-toggle
-
id: link-icon
title: Add Icon Before Link In Editor
title.zh: 编辑器内链接前添加图标
type: class-toggle
default: true
-
id: link-heading
title: Compatible With Heading Style
description: Keep link color with heading, but keep icon
title.zh: 兼容标题样式
description.zh: 链接颜色改为标题颜色,保留图标
type: class-toggle
-
id: link-click-to-edit-in-live-preview
title: Click To Edit Link In Live-Preview
description: ❗will disable hover animation, external link prefix icon will be diabled
title.zh: 实时预览 模式时点击链接进行编辑而不是跳转
description.zh: ❗鼠标经过动画会消失,外部链接的前置图标会消失
type: class-toggle
-
id: link-color
title: Link Color
title.zh: 链接颜色
type: heading
collapsed: true
level: 3
-
id: setting-link-internal-color
title: Internal Link Color
title.zh: 内部链接颜色
type: variable-themed-color
format: rgb-value
opacity: false
default-light: '#'
default-dark: '#'
-
id: setting-link-internal-color-underline
title: Internal Link Underline Color
title.zh: 内部链接下划线颜色
type: variable-themed-color
format: rgb
opacity: false
default-light: '#'
default-dark: '#'
-
id: setting-link-external-color
title: External Link Color
title.zh: 外部链接颜色
type: variable-themed-color
format: rgb-value
opacity: false
default-light: '#'
default-dark: '#'
-
id: setting-link-external-color-underline
title: External Link Underline Color
title.zh: 外部链接下划线颜色
type: variable-themed-color
format: rgb
opacity: false
default-light: '#'
default-dark: '#'
-
id: heading
title: Heading
title.zh: 标题
type: heading
collapsed: true
level: 2
-
id: fix-line-number
title: Fix Line Number Movement
description: Will increase '#' size
title.zh: 修复行号的移动
description.zh: 将增加 '#' 的大小
type: class-toggle
-
id: heading-level
title: Heading Level Icon
description: Add prefix icon for heading, click to collapse title if you open setting “Fold heading”
title.zh: 标题等级图标
description.zh: 为标题添加前置图标,如果你开启了“折叠图标”选项,点击图标可以收起标题
type: heading
collapsed: true
level: 3
-
id: heading-level-enable
title: Level Heading Icon
title.zh: 标题等级图标
type: class-toggle
-
id: heading-level-fix
title: Always Show Heading Icon
description: Highlight on hover
title.zh: 总是显示图标
description.zh: 鼠标经过时高亮
type: class-toggle
-
id: heading-level
title: Heading Style Preference
title.zh: 标题样式设置
type: heading
collapsed: true
level: 3
-
id: heading-h1-center
title: Centered Heading 1
title.zh: 居中一级标题
type: class-toggle
default: true
-
id: heading-underline-thin
title: Thinner Heading Underline
title.zh: 标题下划线变细