-
Notifications
You must be signed in to change notification settings - Fork 55
/
theme.css
9254 lines (8371 loc) · 388 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
/* @settings
name: Theme Info
id: Info
settings:
-
id: Extras-info
description: "🎨 Appearance presets: [get presets here](https://github.com/Akifyss/obsidian-border/blob/main/presets.md), click on “Import” in the top right corner and restart obsidian. <br> <br> 📭 If you have problems, please submit [issues](https://github.com/Akifyss/obsidian-border/issues) or [discuss](https://github.com/Akifyss/obsidian-border/discussions) on Github<br> <br> 🔼 View recent updates: [Github Commit History](https://github.com/Akifyss/obsidian-border/commits/main)"
description.zh: "🎨 外观预设:[在此获取预设](https://github.com/Akifyss/obsidian-border/blob/main/presets.md),点击右上角“Import”导入预设,重启obsidian来生效. <br> <br> 📭 如果遇到问题,可以在Github上 [提交issues](https://github.com/Akifyss/obsidian-border/issues) 或[讨论](https://github.com/Akifyss/obsidian-border/discussions)<br> <br> 🔼 查看最近更新:[Github Commit History](https://github.com/Akifyss/obsidian-border/commits/main)"
type: info-text
markdown: true
*/
/* @settings
name: Components
id: Components
settings:
-
id: autohide
title: Auto hide
title.zh: 自动隐藏
type: heading
collapsed: ture
level: 3
-
id: tab-autohide
title: Auto hide tab bar
title.zh: 自动隐藏 tab栏
description: Mac users can adjust the position of the traffic light using the 'Electron Window Tweaker' plugin
description.zh: Mac 用户可以使用 “Electron Window Tweaker” 插件来调整左上角红绿灯的位置
type: class-toggle
-
id: status-bar-autohide
title: Auto hide bottom status bar
title.zh: 自动隐藏 底部状态栏
type: class-toggle
-
id: Ribbon-autohide
title: Auto hide left ribbon menu
title.zh: 自动隐藏 左侧功能区菜单
type: class-toggle
-
id: nav-header-autohide
title: Auto hide header icons in sidepane
title.zh: 自动隐藏 侧边面板中的头部按钮
type: class-toggle
-
id: tab-title-bar-autohide
title: Auto hide tab title bar
title.zh: 自动隐藏 标签页标题栏
type: class-toggle
-
id: vault-profile-autohide
title: Auto hide vault profile
title.zh: 自动隐藏 vault 配置栏
type: class-toggle
-
id: file-explorer
title: File explorer
title.zh: 文件列表
type: heading
collapsed: true
level: 3
-
id: CTA-BTN-enable
title: Enable bigger "New note" button
title.zh: 启用 更大的“New Note”按钮
type: class-toggle
-
id: file-names-untrim
title: Untrim file names
title.zh: 不修剪文件名
type: class-toggle
-
id: folder-font-bold
title: Bold folder font
title.zh: 加粗文件夹字体
type: class-toggle
-
id: file-explorer-icon
title: icon
title.zh: 图标
type: heading
collapsed: false
level: 4
-
id: file-icon-remove
title: Remove custom icon
title.zh: 移除 自定义图标
type: class-toggle
-
id: colorful-folder
title: Enable colorful folder icon
title.zh: 启用 多彩文件夹图标
type: class-toggle
-
id: outline-panel
title: Outline Panel
title.zh: 大纲面板
type: heading
collapsed: true
level: 3
-
id: outline-enhanced
title: Enable enhanced outline style
title.zh: 启用 增强的大纲样式
description: from https://github.com/subframe7536/obsidian-theme-maple, author:@subframe7536
type: class-toggle
-
id: New-tab
title: New tab
title.zh: 新标签页
type: heading
collapsed: true
level: 3
-
id: new-tab-btn-select
title: New tab buttons
title.zh: 新标签页 按钮
type: class-select
allowEmpty: false
default: new-tab-btn-default
options:
- label: text buttons (obsidian default)
value: new-tab-text-btn-restore
- label: default
value: new-tab-btn-default
-
id: new-tab-image-select
title: New tab image
title.zh: 新标签页 图像
type: class-select
allowEmpty: false
default: new-tab-image-default
options:
- label: none
value: new-tab-image-none
- label: obsidian logo
value: new-tab-image-default
- label: old default
value: new-tab-image-old
- label: customize image
value: new-tab-image-customize
-
id: new-tab-image
title: customize new tab image
title.zh: 自定义新标签页图像
type: variable-text
description: Enter the url of the image into quotes
description.zh: 向引号内输入图像的url
default: url(" ")
-
id: Graph-view
title: Graph view
title.zh: 关系图谱
type: heading
collapsed: true
level: 3
-
id: graph-text
title: graph-text color
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: graph-line
title: graph-line color
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: graph-node
title: graph-node color
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: graph-node-unresolved
title: graph-node-unresolved color
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: graph-node-focused
title: graph-node-focused color
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: graph-node-tag
title: graph-node-tag color
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: graph-node-attachment
title: graph-node-attachment color
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: Canvas
title: Canvas
title.zh: 白板
type: heading
collapsed: true
level: 3
-
id: immersive-canvas
title: immersive canvas
title.zh: 沉浸式白板
type: class-toggle
-
id: media-embed-card-border-off
title: Remove border effect of media card.
title.zh: 移除媒体卡片的边框效果
type: class-toggle
-
id: canvas-background
title: Customize canvas background color
title.zh: 自定义 canvas 背景色
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: canvas-card-border-width
title: canvas card border width
title.zh: canvas 卡片边框大小
type: variable-text
description: Input any CSS border-width value
description.zh: 输入任意 CSS border-width 值
default: 2px
-
id: canvas-card-border-style
title: canvas card border style
title.zh: canvas 卡片边框风格
type: variable-text
description: Input any CSS border-style value
description.zh: 输入任意 CSS border-style 值
default: solid
-
id: canvas-card-menu
title: canvas card menu position
title.zh: canvas 卡片菜单位置
type: class-select
allowEmpty: false
default: canvas-card-menu-center
options:
- label: center(obsidian default)
value: canvas-card-menu-center
- label: left
value: canvas-card-menu-left
- label: right
value: canvas-card-menu-right
-
id: animation
title: Animation
title.zh: 动效
type: heading
collapsed: true
level: 3
-
id: extra-anim-remove
title: Remove additional added animation
title.zh: 移除 额外增加的动效
type: class-toggle
-
id: anim-speed
title: Animation speed
title.zh: 动效速度
type: variable-number-slider
default: 1
min: 0.5
max: 2
step: 0.05
-
id: Miscellaneous
title: Miscellaneous
title.zh: 杂项
type: heading
collapsed: true
level: 3
-
id: setting-item-title-icon-remove
title: Remove setting item title icon
title.zh: 移除 设置项标题图标
type: class-toggle
-
id: scrollbar-hide
title: Hide scrollbar
title.zh: 隐藏 滚动条
type: class-toggle
-
id: restored-scrollbars
title: Restore scrollbar style
title.zh: 还原 滚动条的样式
type: class-toggle
*/
/* @settings
name: Appearance (light mode)
id: Appearance-light
settings:
-
id: Presets-info-light
description: "[Presets (light)](https://github.com/Akifyss/obsidian-border/blob/main/presets.md#light-mode) | Before importing, it is recommended to reset this entry to default / Remove preset↗️"
description.zh: "[预设(亮色)](https://github.com/Akifyss/obsidian-border/blob/main/presets.md#light-mode) | 导入前,推荐先将此条目重设为默认 / 移除预设↗️ "
type: info-text
markdown: true
-
id: card-layout-open-light
title: Enable card layout(light mode)
title.zh: 启用 卡片式布局(亮色模式)
type: class-toggle
-
id: theme-light-style-select
title: Base style (light mode)
title.zh: 基础风格(亮色模式)
type: class-select
allowEmpty: false
default: theme-light-background-default
options:
- label: default
value: theme-light-background-default
- label: old default
value: theme-light-background-old-default
- label: colored
value: theme-light-background-adapt
-
id: Color-light
title: Color
title.zh: 色彩
type: heading
collapsed: true
level: 3
-
id: Accent-color-light
title: Accent color
title.zh: 主题色
type: heading
collapsed: true
level: 4
-
id: accent-light
title: Accent color(light mode)
title.zh: 主题色(亮色模式)
description: Set accent color for the light and dark modes separately
description.zh: 分开来设置亮色模式与暗色模式的强调色
type: variable-color
format: hsl-split
opacity: false
default: '#5a6ded'
-
id: accent-color-override-light
title: Override accent color setting in "Settings-Appearance" menu(light mode)
title.zh: 覆写 "设置-外观 "菜单中的强调色设置(亮色模式)
type: class-toggle
-
id: accent-advanced-light
title: Advanced
title.zh: 高级
type: heading
collapsed: true
level: 5
-
id: color-accent-hsl-light
title: color-accent-hsl
title.zh: color-accent-hsl
type: variable-color
format: hsl-values
opacity: false
default: '#'
-
id: color-accent-light
title: color-accent
title.zh: color-accent
type: variable-color
format: hsl
opacity: false
default: '#'
-
id: color-accent-1-light
title: color-accent-1
title.zh: color-accent-1
type: variable-color
format: hsl
opacity: false
default: '#'
-
id: color-accent-2-light
title: color-accent-2
title.zh: color-accent-2
type: variable-color
format: hsl
opacity: false
default: '#'
-
id: color-accent-3-light
title: color-accent-3
title.zh: color-accent-3
type: variable-color
format: hsl
opacity: false
default: '#'
-
id: Extended-colors-light
title: Extended colors
title.zh: 拓展色
type: heading
collapsed: true
level: 4
-
id: color-red-rgb
title: Red
type: variable-themed-color
format: 'rgb-values'
default-light: '#dd2c38'
default-dark: '#ff7881'
-
id: color-orange-rgb
title: Orange
type: variable-themed-color
format: 'rgb-values'
default-light: '#de7417'
default-dark: '#fbbb83'
-
id: color-yellow-rgb
title: Yellow
type: variable-themed-color
format: 'rgb-values'
default-light: '#c09c0c'
default-dark: '#ffe88b'
-
id: color-green-rgb
title: Green
type: variable-themed-color
format: 'rgb-values'
default-light: '#1da51d'
default-dark: '#7cd37c'
-
id: color-cyan-rgb
title: Cyan
type: variable-themed-color
format: 'rgb-values'
default-light: '#16a6ab'
default-dark: '#86dfe2'
-
id: color-blue-rgb
title: Blue
type: variable-themed-color
format: 'rgb-values'
default-light: '#1775d9'
default-dark: '#89bdf4'
-
id: color-purple-rgb
title: Purple
type: variable-themed-color
format: 'rgb-values'
default-light: '#8f47e1'
default-dark: '#cb9eff'
-
id: color-pink-rgb
title: Pink
type: variable-themed-color
format: 'rgb-values'
default-light: '#dd1399'
default-dark: '#f2b6de'
-
id: Background-light
title: Background
title.zh: 背景
type: heading
collapsed: true
level: 3
-
id: mod-left-split-background-header-light
title: Left sidepane background
title.zh: 左侧面板背景
type: heading
collapsed: ture
level: 4
-
id: mod-left-split-background-select-light
title: Left sidepane background(light mode)
title.zh: 左侧面板背景(亮色模式)
type: class-select
allowEmpty: false
default: mod-left-split-background-primary-light
options:
- label: background-primary (default)
value: mod-left-split-background-primary-light
- label: background-secondary
value: mod-left-split-background-secondary-light
- label: transparent (card layout only)
value: mod-left-split-background-transparent-light
- label: customize color
value: mod-left-split-background-customize-light
- label: customize CSS
value: mod-left-split-background-CSS-light
-
id: background-mod-left-split-light
title: Customize left sidepane background color (light mode)
title.zh: 自定义 左侧面板 背景色(亮色模式)
type: variable-color
opacity: ture
format: hex
alt-format:
-
id: accent-rgb
format: rgb
default: '#'
-
id: background-mod-left-CSS-light
title: Left sidepane background (light mode)
title.zh: 左侧面板background(亮色模式)
description: Input any CSS background value
description.zh: 输入任意 CSS background 值
type: variable-text
default: ''
-
id: background-mod-left-CSS-blend-mode-light
title: Left sidepane background-blend-mode (light mode)
title.zh: 左侧面板background-blend-mode(亮色模式)
description: Input any CSS background-blend-mode value
description.zh: 输入任意 CSS background-blend-mode 值
type: variable-text
default: normal
-
id: background-mod-left-CSS-backdrop-filter-light
title: Left sidepane backdrop-filter (light mode)
title.zh: 左侧面板backdrop-filter(亮色模式)
description: Input any CSS backdrop-filter value
description.zh: 输入任意 CSS backdrop-filter 值
type: variable-text
default: blur(32px)
-
id: mod-right-split-background-header-light
title: Right sidepane background
title.zh: 右侧面板背景
type: heading
collapsed: ture
level: 4
-
id: mod-right-split-background-select-light
title: Right sidepane background (light mode)
title.zh: 右侧面板背景(亮色模式)
type: class-select
allowEmpty: false
default: mod-right-split-background-primary-light
options:
- label: background-primary (default)
value: mod-right-split-background-primary-light
- label: background-secondary
value: mod-right-split-background-secondary-light
- label: transparent (card layout only)
value: mod-right-split-background-transparent-light
- label: customize color
value: mod-right-split-background-customize-light
- label: customize CSS
value: mod-right-split-background-CSS-light
-
id: background-mod-right-split-light
title: Customize right sidepane background color(light mode)
title.zh: 自定义 右侧面板 背景色(亮色模式)
type: variable-color
opacity: ture
format: hex
alt-format:
-
id: accent-rgb
format: rgb
default: '#'
-
id: background-mod-right-CSS-light
title: Right sidepane background (light mode)
title.zh: 右侧面板background(亮色模式)
description: Input any CSS background value
description.zh: 输入任意 CSS background 值
type: variable-text
default: ''
-
id: background-mod-right-CSS-blend-mode-light
title: Right sidepane background-blend-mode (light mode)
title.zh: 右侧面板background-blend-mode(亮色模式)
description: Input any CSS background-blend-mode value
description.zh: 输入任意 CSS background-blend-mode 值
type: variable-text
default: normal
-
id: background-mod-right-CSS-backdrop-filter-light
title: Right sidepane backdrop-filter (light mode)
title.zh: 右侧面板backdrop-filter(亮色模式)
description: Input any CSS backdrop-filter value
description.zh: 输入任意 CSS backdrop-filter 值
type: variable-text
default: blur(32px)
-
id: mod-root-split-background-header-light
title: Middle pane background
title.zh: 中间面板背景
type: heading
collapsed: ture
level: 4
-
id: mod-root-split-background-select-light
title: Middle pane background (light mode)
title.zh: 中间面板背景(亮色模式)
type: class-select
allowEmpty: false
default: mod-root-split-background-primary-light
options:
- label: background-primary (default)
value: mod-root-split-background-primary-light
- label: background-secondary
value: mod-root-split-background-secondary-light
- label: transparent (card layout only)
value: mod-root-split-background-transparent-light
- label: customize color
value: mod-root-split-background-customize-light
- label: customize CSS
value: mod-root-split-background-CSS-light
-
id: background-mod-root-split-light
title: Customize Middle pane background color(light mode)
title.zh: 自定义 中间面板 背景色(亮色模式)
type: variable-color
opacity: ture
format: hex
alt-format:
-
id: accent-rgb
format: rgb
default: '#'
-
id: background-mod-root-CSS-light
title: Middle pane background (light mode)
title.zh: 中间面板background(亮色模式)
description: Input any CSS background value
description.zh: 输入任意 CSS background 值
type: variable-text
default: ''
-
id: background-mod-root-CSS-blend-mode-light
title: Middle pane background-blend-mode (light mode)
title.zh: 中间面板background-blend-mode(亮色模式)
description: Input any CSS background-blend-mode value
description.zh: 输入任意 CSS background-blend-mode 值
type: variable-text
default: normal
-
id: background-mod-root-CSS-backdrop-filter-light
title: Middle pane backdrop-filter (light mode)
title.zh: 中间面板backdrop-filter(亮色模式)
description: Input any CSS backdrop-filter value
description.zh: 输入任意 CSS backdrop-filter 值
type: variable-text
default: blur(32px)
-
id: underlying-background-header-light
title: Underlying background
title.zh: 底层背景
type: heading
collapsed: ture
level: 4
-
id: background-underlying-select-light
title: underlying background(light mode)
title.zh: 底层背景(亮色模式)
type: class-select
allowEmpty: false
default: background-underlying-default-light
options:
- label: background-primary
value: background-underlying-primary-light
- label: background-secondary
value: background-underlying-secondary-light
- label: adapt to accent color(default)
value: background-underlying-default-light
- label: customize color
value: background-underlying-Color-light
- label: customize CSS
value: background-underlying-CSS-light
-
id: background-underlying-light
title: Customize underlying background color(light mode)
title.zh: 自定义 底层背景色(亮色模式)
type: variable-color
opacity: ture
format: hex
alt-format:
-
id: accent-rgb
format: rgb
default: '#'
-
id: background-underlying-CSS-light
title: underlying background (light mode)
title.zh: 底层background(亮色模式)
description: Input any CSS background value
description.zh: 输入任意 CSS background 值
type: variable-text
default: ''
-
id: background-underlying-CSS-blend-mode-light
title: underlying background-blend-mode (light mode)
title.zh: 底层background-blend-mode(亮色模式)
description: Input any CSS background-blend-mode value
description.zh: 输入任意 CSS background-blend-mode 值
type: variable-text
default: overlay, color-burn
-
id: underlying-foreground-header-light
title: Underlying foreground
title.zh: 底层前景
description: Adjust foreground to fit the background
description.zh: 调整前景以适应背景
type: heading
collapsed: ture
level: 5
-
id: on-border-light
title: underlying foreground color(light mode)
title.zh: 底层前景色(亮色模式)
description: Color of elements (text&icon) displayed on underlying background, including top tab bar, ribbon menu, and status bar
description.zh: 显示在底层背景上的元素(text&icon)颜色,包括顶部标签栏、功能区菜单和状态栏
type: variable-color
opacity: ture
format: hex
alt-format:
-
id: accent-rgb
format: rgb
default: '#'
-
id: mix-blend-mode-on-border-light
title: mix blend mode of underlying foreground(light mode)
title.zh: 底层前景的混合模式(亮色模式)
description: Input any CSS mix-blend-mode value
description.zh: 输入任意 CSS mix-blend-mode 值
type: variable-text
default: normal
-
id: Global-background-header-light
title: Global background
title.zh: 全局背景
type: heading
collapsed: ture
level: 4
-
id: background-primary
title: background-primary(light mode)
title.zh: background-primary(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: background-primary-alt
title: background-primary-alt(light mode)
title.zh: background-primary-alt(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: background-secondary
title: background-secondary(light mode)
title.zh: background-secondary(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: background-secondary-alt
title: background-secondary-alt(light mode)
title.zh: background-secondary-alt(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: background-tertiary
title: background-tertiary(light mode)
title.zh: background-tertiary(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: workspace-background-translucent
title: workspace-background-translucent(light mode)
title.zh: workspace-background-translucent(亮色模式)
type: variable-themed-color
opacity: true
format: hsl
default-light: '#'
default-dark: '#'
-
id: background-modifier-hover
title: background-modifier-hover(light mode)
title.zh: background-modifier-hover(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: background-modifier-active-hover
title: background-modifier-active-hover(light mode)
title.zh: background-modifier-active-hover(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: background-modifier-border
title: background-modifier-border(light mode)
title.zh: background-modifier-border(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: background-modifier-border-hover
title: background-modifier-border-hover(light mode)
title.zh: background-modifier-border-hover(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: background-modifier-border-focus
title: background-modifier-border-focus(light mode)
title.zh: background-modifier-border-focus(亮色模式)
type: variable-themed-color
opacity: true
format: hex
default-light: '#'
default-dark: '#'
-
id: Foreground-header-light
title: Foreground
title.zh: 前景
type: heading
collapsed: ture
level: 3
-
id: text-color-light
title: Text & icon color
title.zh: 文本 & 图标色
type: heading
collapsed: ture
level: 4
-
id: text-normal
title: text-normal(light mode)
title.zh: text-normal(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: text-muted
title: text-muted(light mode)
title.zh: text-muted(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: text-faint
title: text-faint(light mode)
title.zh: text-faint(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: text-accent
title: text-accent(light mode)
title.zh: text-accent(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: text-accent-hover
title: text-accent-hover(light mode)
title.zh: text-accent-hover(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: text-on-accent
title: text-on-accent(light mode)
title.zh: text-on-accent(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: text-on-accent-inverted
title: text-on-accent-inverted(light mode)
title.zh: text-on-accent-inverted(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: interactive-color-light
title: Interactive color
title.zh: 交互色
type: heading
collapsed: ture
level: 4
-
id: interactive-normal
title: interactive-normal(light mode)
title.zh: interactive-normal(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: interactive-hover
title: interactive-hover(light mode)
title.zh: interactive-hover(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: interactive-accent
title: interactive-accent(light mode)
title.zh: interactive-accent(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: interactive-accent-hsl
title: interactive-accent-hsl(light mode)
title.zh: interactive-accent-hsl(亮色模式)
type: variable-themed-color
format: hsl-values
default-light: '#'
default-dark: '#'
-
id: interactive-accent-hover
title: interactive-accent-hover(light mode)
title.zh: interactive-accent-hover(亮色模式)
type: variable-themed-color
format: hex
default-light: '#'
default-dark: '#'
-
id: Card-light
title: Card
title.zh: 卡片
type: heading
collapsed: true
level: 3
-
id: card-border-radius-light
title: Custom card border radius (light mode)
title.zh: 自定义 卡片的圆角大小(亮色模式)
description: Input your border-radius value here
description.zh: 在这里输入你的 border-radius 值
type: variable-text
default: 8px
-