-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.json
More file actions
123 lines (123 loc) · 3.11 KB
/
theme.json
File metadata and controls
123 lines (123 loc) · 3.11 KB
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
{
"$schema": "./theme.manifest.schema.json",
"id": "reactpress-theme-starter",
"name": "ReactPress Theme Starter",
"version": "1.0.0",
"description": "Tailwind 风格博客主题,Next.js App Router + ReactPress 动态内容,支持深浅色、评论、知识库与网址导航。",
"author": "ReactPress",
"authorUri": "https://reactpress.surge.sh/",
"themeUri": "https://github.com/fecommunity/reactpress-theme-starter",
"tags": ["博客", "Tailwind", "App Router", "ReactPress"],
"cover": "public/logo-400.png",
"requires": ">=3.0.0",
"supports": {
"darkMode": true,
"menus": ["primary"]
},
"templates": {
"404": "app/not-found.tsx",
"home": "app/page.tsx",
"single": "app/article/[id]/page.tsx",
"page": "app/page/[id]/page.tsx",
"archive-category": "app/category/[category]/page.tsx",
"archive-tag": "app/tag/[tag]/page.tsx",
"archives": "app/archives/page.tsx",
"search": "app/search/page.tsx"
},
"appearance": {
"panels": [
{
"id": "basic",
"title": "基础配置"
},
{
"id": "style",
"title": "样式配置"
}
],
"sections": [
{
"id": "identity",
"panel": "basic",
"title": "站点身份",
"settings": [
{
"id": "displayTitle",
"type": "text",
"label": "站点标题",
"description": "留空则继承后台「站点标题」"
},
{
"id": "displayTagline",
"type": "text",
"label": "站点副标题",
"description": "留空则继承后台「站点副标题」"
},
{
"id": "siteLogo",
"type": "image",
"label": "站点 Logo"
}
]
},
{
"id": "colors",
"panel": "style",
"title": "颜色",
"groups": [
{
"id": "light",
"title": "浅色模式"
},
{
"id": "dark",
"title": "深色模式"
}
],
"settings": [
{
"id": "primaryColor",
"group": "light",
"type": "color",
"label": "主色",
"default": "#e11d48"
},
{
"id": "backgroundColor",
"group": "light",
"type": "color",
"label": "背景色",
"default": "#ffffff"
},
{
"id": "darkPrimaryColor",
"group": "dark",
"type": "color",
"label": "主色",
"default": "#fb7185"
},
{
"id": "darkBackgroundColor",
"group": "dark",
"type": "color",
"label": "背景色",
"default": "#030712"
}
]
},
{
"id": "layout",
"panel": "basic",
"title": "布局",
"settings": [
{
"id": "stickyNav",
"type": "checkbox",
"label": "固定顶栏",
"default": "0"
}
]
}
]
}
}