-
Notifications
You must be signed in to change notification settings - Fork 53
/
config.json
1235 lines (1235 loc) · 29 KB
/
config.json
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
{
"name": "NexT",
"version": "0.4.1",
"author": "hsxyhao",
"repository": "https://github.com/hsxyhao/gridea-theme-next",
"customConfig": [
{
"label": "相关文档",
"group": "布局",
"note": "https://yeming.site/post/1JA_OJlig/#布局"
},
{
"name": "scheme",
"label": "外观",
"group": "布局",
"value": "pisces",
"type": "radio",
"options": [
{
"label": "Pisces 小家碧玉似的清新",
"value": "pisces"
},
{
"label": "Gemini 精于心,简于形",
"value": "gemini"
},
{
"label": "Muse 黑白主调,大量留白",
"value": "muse"
},
{
"label": "Mist 整洁有序的单栏外观",
"value": "mist"
}
]
},
{
"name": "subTitle",
"label": "子标题",
"group": "布局",
"value": "精于心,简于形",
"type": "input"
},
{
"name": "bolgername",
"label": "博主名称",
"group": "布局",
"value": "我是谁",
"type": "input"
},
{
"name": "bolgerjss",
"label": "博主介绍",
"group": "布局",
"type": "input",
"value": "",
"note": "支持多行写法,使用\\n表示换行,可以在魔改处开启美化功能"
},
{
"name": "cssStr",
"label": "自定义css",
"group": "布局",
"value": "",
"type": "textarea",
"note": "可以修改主题中的指定元素以及markdown的样式、颜色,需要css基础"
},
{
"name": "viewportWidth",
"label": "博客可视区宽度",
"group": "布局",
"value": "960px",
"type": "input",
"note": "各Scheme14寸屏左右推荐配置:Pisces 960px,Muse 700px, Mist 85%, Gemini 960px。在Pisces、Gemini风格中博客可视区宽度比文章内容区宽度多250~260px左右,设置了可视区宽度默认改变了内容区宽度"
},
{
"name": "fontSize",
"label": "字体大小",
"group": "布局",
"value": "",
"type": "input",
"note": "阅读内容区域字体大小,默认14"
},
{
"name": "fontFamily",
"label": "字体",
"group": "布局",
"value": "",
"type": "input",
"note": "修改字体需要将下载好的ttf文件复制到~/Gridea/themes/next/assets/media/fonts目录下,把文件名写在上面,重新生成即可,若无效联系微信:wx806649821(备注Next)"
},
{
"name": "language",
"label": "语言",
"group": "布局",
"value": "",
"type": "select",
"options": [
{
"label": "中文(默认)",
"value": ""
},
{
"label": "英文",
"value": "en"
}
]
},
{
"label": "相关文档",
"group": "颜色",
"note": "https://yeming.site/post/1JA_OJlig/#颜色"
},
{
"name": "bgColor",
"label": "背景色",
"group": "颜色",
"value": "#eee",
"type": "input",
"card": "color",
"note": "Pisces、Gemini风格默认#eee,Muse、Mist默认#FFF"
},
{
"name": "postSectionBgColor",
"label": "主色调",
"group": "颜色",
"value": "#fff",
"type": "input",
"card": "color"
},
{
"name": "timeLineColor",
"label": "归档页时间线线条色",
"group": "颜色",
"value": "#eee",
"type": "input",
"card": "color",
"note": "标签详情页的时间线也生效"
},
{
"name": "fontColor",
"label": "字体颜色",
"group": "颜色",
"value": "#555",
"card": "color",
"type": "input",
"note": "默认字体颜色"
},
{
"name": "titleColor",
"label": "标题颜色",
"group": "颜色",
"value": "#555",
"type": "input",
"card": "color"
},
{
"name": "linkColor",
"label": "链接颜色",
"group": "颜色",
"value": "#555",
"type": "input",
"card": "color"
},
{
"name": "linkHoverColor",
"label": "链接Hover颜色",
"group": "颜色",
"value": "#222",
"type": "input",
"card": "color"
},
{
"name": "bgSiteMetaColor",
"label": "博客标题区域背景色",
"group": "颜色",
"value": "#000",
"type": "input",
"card": "color",
"note": "默认黑色不透明"
},
{
"name": "bgTitleColor",
"label": "博客标题背景色",
"group": "颜色",
"value": "#000",
"type": "input",
"card": "color",
"note": "默认黑色,不透明,Mist风格不生效"
},
{
"name": "blogTitleColor",
"label": "博客标题色",
"group": "颜色",
"value": "#FFF",
"type": "input",
"card": "color"
},
{
"name": "mobileMenuBtnColor",
"label": "移动端菜单按钮颜色",
"group": "颜色",
"value": "",
"type": "input",
"card": "color",
"note": "兼容主题色,默认为白色"
},
{
"name": "menuColor",
"label": "菜单项字体颜色",
"group": "颜色",
"value": "#555",
"type": "input",
"card": "color"
},
{
"name": "menuHoverColor",
"label": "菜单项Hover字体颜色",
"group": "颜色",
"value": "#222",
"type": "input",
"card": "color"
},
{
"name": "menuActiveColor",
"label": "当前菜单项背景颜色",
"group": "颜色",
"value": "#f9f9f9",
"type": "input",
"card": "color"
},
{
"label": "相关文档",
"group": "鼠标",
"note": "https://yeming.site/post/1JA_OJlig/#鼠标"
},
{
"name": "mouseClick",
"label": "鼠标点击效果",
"group": "鼠标",
"value": "none",
"type": "radio",
"options": [
{
"label": "无",
"value": "none"
},
{
"label": "love",
"value": "love"
},
{
"label": "peace",
"value": "peace"
},
{
"label": "fireworks",
"value": "fireworks"
}
]
},
{
"name": "cursorDefault",
"label": "默认",
"group": "鼠标",
"value": "",
"type": "input"
},
{
"name": "cursorLink",
"label": "链接",
"group": "鼠标",
"value": "",
"type": "input"
},
{
"name": "cursorText",
"label": "文本",
"group": "鼠标",
"value": "",
"type": "input"
},
{
"name": "cursorCopy",
"label": "复制",
"group": "鼠标",
"value": "",
"type": "input"
},
{
"name": "cursorZoomin",
"label": "放大",
"group": "鼠标",
"value": "",
"type": "input"
},
{
"name": "cursorZoomout",
"label": "缩小",
"group": "鼠标",
"value": "",
"type": "input"
},
{
"label": "相关文档",
"group": "特性",
"note": "https://yeming.site/post/1JA_OJlig/#特性"
},
{
"name": "seoKeywords",
"label": "SEO",
"group": "特性",
"value": "Gridea静态个人博客",
"type": "input",
"note": "seo优化关键字"
},
{
"name": "startTime",
"label": "创建时间",
"group": "特性",
"type": "input"
},
{
"name": "menuIcon",
"label": "导航菜单图标",
"group": "特性",
"value": "auto",
"type": "radio",
"options": [
{
"label": "无",
"value": "none"
},
{
"label": "默认",
"value": "default"
},
{
"label": "自动",
"value": "auto"
}
],
"note": "无:导航菜单不会添加任何图标,默认:使用默认的图标,无法识别则不使用,自动:使用默认的图标,包含无法识别"
},
{
"name": "imgFillet",
"label": "站点预览头像圆角",
"group": "特性",
"value": true,
"type": "switch",
"note": "开启会产生头像旋转彩蛋"
},
{
"name": "enableSearch",
"label": "站内搜索",
"group": "特性",
"value": true,
"type": "switch",
"note": "站内搜索功能"
},
{
"name": "enableMobileImg",
"label": "移动端背景图片",
"group": "特性",
"value": true,
"type": "switch",
"note": "开启后移动端浏览会对pc端的背景图片进行压缩显示"
},
{
"name": "sideIsRight",
"label": "菜单栏右侧显示",
"group": "特性",
"value": false,
"type": "switch",
"note": "默认菜单栏在左边显示"
},
{
"name": "newWindow",
"label": "文章链接新窗口打开",
"group": "特性",
"value": false,
"type": "switch",
"note": "开启后博客内的链接会在新的窗口打开"
},
{
"name": "rss",
"label": "RSS",
"group": "特性",
"value": false,
"type": "switch",
"note": "建议开启RSS"
},
{
"name": "is_auto_excerpt",
"label": "是否启用自动摘要(封面显示策略为无时生效)",
"group": "特性",
"value": true,
"type": "switch"
},
{
"name": "auto_excerpt_line",
"label": "自动摘要选取行数",
"group": "特性",
"value": "3",
"type": "input"
},
{
"name": "hljs",
"label": "代码块高亮主题",
"group": "特性",
"value": "default",
"type": "input",
"note": "前往官方地址https://highlightjs.org/,选择合适的高亮主题"
},
{
"name": "latex",
"label": "Latex渲染",
"group": "特性",
"value": "katex",
"type": "select",
"options": [
{
"label": "katex",
"value": "katex"
},
{
"label": "mathjax",
"value": "mathjax"
}
],
"note": "Latex公式渲染插件"
},
{
"name": "strategy",
"label": "封面显示策略",
"group": "特性",
"value": "none",
"type": "select",
"options": [
{
"label": "无",
"value": "none"
},
{
"label": "第1段落后",
"value": "first"
},
{
"label": "摘要前",
"value": "before"
},
{
"label": "摘要后",
"value": "after"
},
{
"label": "随机",
"value": "random"
},
{
"label": "两百字以后",
"value": "words"
}
],
"note": "多种封面显示策略适配不同种摘要排版"
},
{
"label": "相关文档",
"group": "目录",
"note": "https://yeming.site/post/1JA_OJlig/#目录"
},
{
"name": "siteBar",
"label": "阅读页目录展示方案",
"group": "目录",
"value": "auto",
"type": "radio",
"options": [
{
"label": "隐藏",
"value": "hide"
},
{
"label": "自动",
"value": "auto"
},
{
"label": "目录",
"value": "toc"
},
{
"label": "站点预览",
"value": "sitemeta"
}
],
"note": "显示:如果有目录则展示,没有什么都展示,隐藏:什么都不展示,自动:主题自动检测,检测到目录结构则展示,否则展示站点概览,站点预览:只显示站点预览"
},
{
"name": "autoNumber",
"label": "目录自动序号",
"group": "目录",
"value": false,
"type": "switch",
"note": "仅在有目录时生效"
},
{
"name": "indexColor",
"label": "目录颜色",
"group": "目录",
"value": "#eee",
"type": "input",
"card": "color"
},
{
"name": "indexHoverColor",
"label": "目录Hover颜色",
"group": "目录",
"value": "#fff",
"type": "input",
"card": "color"
},
{
"name": "indexActiveColor",
"label": "当前目录颜色",
"group": "目录",
"value": "",
"type": "input",
"card": "color"
},
{
"name": "tocCompress",
"label": "目录压缩策略",
"group": "目录",
"value": "auto",
"type": "radio",
"options": [
{
"label": "不压缩",
"value": "no_compress"
},
{
"label": "自动压缩",
"value": "auto"
},
{
"label": "压缩",
"value": "compress"
}
],
"note": "超过10个链接则启动压缩,建议启动压缩,目录过长可以进行一定优化"
},
{
"name": "enableReward",
"label": "开启文章打赏功能",
"group": "赞赏",
"value": true,
"type": "switch"
},
{
"name": "rewardTitle",
"label": "标题",
"group": "赞赏",
"value": "扫码打赏,你说多少就多少",
"type": "input"
},
{
"name": "rewardTip",
"label": "提示语",
"group": "赞赏",
"value": " ",
"type": "input"
},
{
"name": "rewardBgColor",
"label": "赞赏按钮颜色",
"group": "赞赏",
"value": "",
"type": "input",
"card": "color"
},
{
"name": "zfbImg",
"label": "支付宝打赏码",
"group": "赞赏",
"value": "",
"type": "picture-upload"
},
{
"name": "zfbImgUrl",
"label": "支付宝打赏码链接(兼容windows)",
"group": "赞赏",
"value": "",
"type": "input"
},
{
"name": "wxImg",
"label": "微信打赏码",
"group": "赞赏",
"value": "",
"type": "picture-upload"
},
{
"name": "wxImgUrl",
"label": "微信打赏码(兼容windows)",
"group": "赞赏",
"value": "",
"type": "input"
},
{
"label": "相关文档",
"group": "社交",
"note": "https://yeming.site/post/1JA_OJlig/#社交"
},
{
"name": "socials",
"label": "链接",
"group": "社交",
"type": "array",
"value": [],
"arrayItems": [
{
"label": "名称",
"name": "socialName",
"type": "input",
"value": ""
},
{
"label": "图标",
"name": "socialIcon",
"type": "input",
"value": "fa-globe"
},
{
"label": "链接",
"name": "socialLink",
"type": "input",
"value": ""
}
],
"note": "常用的社交图标,github:fa-github-alt,twitter:fa-twitter,微信:fa-wechat,QQ:fa-qq,图标采用的是font-awesome矢量字体图标,自定义图标可以从http://www.fontawesome.com.cn上查找"
},
{
"name": "imgSocials",
"label": "图片",
"group": "社交",
"type": "array",
"value": [],
"arrayItems": [
{
"label": "名称",
"name": "socialName",
"type": "input",
"value": ""
},
{
"label": "图标",
"name": "socialIcon",
"type": "input",
"value": "fa-globe"
},
{
"label": "图片",
"name": "socialImg",
"type": "picture-upload",
"value": ""
}
],
"note": "QQ、微信类有二维码图片的社交账号,可以在这里添加"
},
{
"label": "相关文档",
"group": "友链",
"note": "https://yeming.site/post/1JA_OJlig/#友链"
},
{
"name": "enableFriendPage",
"label": "自定义友链页面",
"group": "友链",
"value": true,
"type": "switch",
"note": "开启后会自动在菜单栏生成一个友链导航,不开启在站点预览下出现友链"
},
{
"name": "friendsTitle",
"label": "友链标题",
"group": "友链",
"value": "友链",
"type": "input",
"note": "自定义友链标题"
},
{
"name": "friendsIcon",
"label": "导航图标",
"group": "友链",
"value": "",
"type": "input",
"note": "支持emoji图标,默认为fa-ship"
},
{
"name": "friendsTarget",
"label": "内部/外部",
"group": "友链",
"value": "_self",
"type": "input",
"note": "_blank: 浏览器中打开新的tab页,_self: 当前tab页跳转"
},
{
"name": "friendsIndex",
"label": "导航链接位置",
"group": "友链",
"value": "",
"type": "input",
"note": "在导航菜单中的排序,默认最后一个"
},
{
"name": "friends",
"label": "友链",
"group": "友链",
"type": "array",
"value": [],
"arrayItems": [
{
"label": "名称",
"name": "siteName",
"type": "input",
"value": ""
},
{
"label": "链接",
"name": "siteLink",
"type": "input",
"value": ""
},
{
"label": "头像",
"name": "siteAvator",
"type": "input",
"value": ""
}
]
},
{
"label": "相关文档",
"group": "魔改",
"note": "https://yeming.site/post/1JA_OJlig/#魔改"
},
{
"name": "bgImg",
"label": "背景图片",
"group": "魔改",
"value": "",
"type": "picture-upload",
"note": "博客整体背景图"
},
{
"name": "bgImgUrl",
"label": "背景图片地址(兼容windows)",
"group": "魔改",
"value": "",
"type": "input",
"note": "目前windows系统使用背景图片请手动填写,上传会造成配置无法保存,具体填写规范README上有介绍"
},
{
"name": "bgEfficty",
"label": "背景特效",
"group": "魔改",
"value": "none",
"type": "radio",
"options": [
{
"label": "无",
"value": "none"
},
{
"label": "樱花",
"value": "sakura"
},
{
"label": "粒子",
"value": "nest"
},
{
"label": "雪花",
"value": "snowflake"
}
]
},
{
"name": "particleClock",
"label": "粒子时钟",
"group": "魔改",
"value": false,
"type": "switch"
},
{
"name": "bolgerjsplus",
"label": "博主介绍美化",
"group": "魔改",
"value": false,
"type": "switch",
"note": "博主介绍美化,默认关闭"
},
{
"name": "loadAnimationStyle",
"label": "加载动画样式",
"group": "魔改",
"value": "",
"type": "input",
"note": "使用外链或本地地址加载样式,加载颜色兼容next主题色,默认不开启,加载样式地址:https://cdn.jsdelivr.net/npm/[email protected]/themes/"
},
{
"name": "opacity",
"label": "可视区透明度",
"group": "魔改",
"value": "",
"type": "input",
"note": "正常模式下所有标签的透明度,仅数字1~100"
},
{
"name": "radius",
"label": "圆角",
"group": "魔改",
"value": "",
"type": "input",
"note": "Pisces、Gemini风格下圆角配置"
},
{
"name": "bgTitleFontSize",
"label": "站点标题字体大小",
"group": "魔改",
"value": "",
"type": "input",
"note": "字体大小采用的是css transform属性,参考值为[1,3]"
},
{
"name": "blur",
"label": "背景图片虚化",
"group": "魔改",
"value": "",
"type": "input"
},
{
"name": "leaveTitle",
"label": "页面离开提示语",
"group": "魔改",
"value": "",
"type": "input"
},
{
"name": "shadow",
"label": "Muse、Mist风格阴影效果",
"group": "魔改",
"value": false,
"type": "switch",
"note": "仅Muse风格生效,建议Muse风格中添加标题背景图片时开启"
},
{
"label": "相关文档",
"group": "看板娘",
"note": "https://yeming.site/post/1JA_OJlig/#看板娘"
},
{
"name": "enableLive2d",
"label": "是否开启看板娘",
"group": "看板娘",
"value": false,
"type": "switch"
},
{
"name": "enableLive2dSocial",
"label": "是否开启社交",
"group": "看板娘",
"value": true,
"type": "switch"
},
{
"name": "chooseLive2d",
"label": "选择看板娘",
"group": "看板娘",
"value": "auto",
"type": "radio",
"options": [
{
"label": "伊斯特瓦尔",
"value": "histoire"
},
{
"label": "蕾姆",
"value": "rem"
},
{
"label": "凉风青叶",
"value": "aoba"
},
{
"label": "小黑",
"value": "hijiki"
},
{
"label": "小白",
"value": "tororo"
}
]
},
{
"name": "apiKey",
"label": "apiKey",
"group": "看板娘",
"value": "",
"type": "input",
"note": "图灵机器人秘钥"
},
{
"name": "scale",
"label": "看板娘大小",
"group": "看板娘",
"value": "",
"type": "input",
"note": "建议值[0,1]"
},
{
"name": "live2dLeft",
"label": "看板娘距左边距离",
"group": "看板娘",
"value": "",
"type": "input"
},
{
"name": "live2dBottom",
"label": "看板娘距底部距离",
"group": "看板娘",
"value": "",
"type": "input"
},
{
"name": "musicLinks",
"label": "看板娘音乐",
"group": "看板娘",
"type": "array",
"value": [],
"arrayItems": [
{
"label": "音乐名",
"name": "musicName",
"type": "input",
"value": ""
},
{
"label": "链接",
"name": "musicLink",
"type": "input",
"value": ""
}
]
},
{
"label": "相关文档",
"group": "音乐",
"note": "https://yeming.site/post/1JA_OJlig/#音乐"
},
{
"name": "bgMusic",
"label": "音乐插件",
"group": "音乐",
"value": "none",
"type": "radio",
"options": [
{
"label": "无",
"value": "none"
},
{
"label": "Aplayer",
"value": "aplayer"
},
{
"label": "Hkplayer",
"value": "Hkplayer"
},
{
"label": "歌单外链",
"value": "iframeLinks"
}
],
"note": "建议看板娘的背景音乐和APlayer只开启一个"
},
{
"name": "iframeHtml",
"label": "外链",
"group": "音乐",
"value": "",
"type": "textarea",
"note": ""
},
{
"name": "aplayerList",
"label": "播放列表",
"group": "音乐",
"type": "array",
"value": [],
"arrayItems": [