-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy paththeme.config.ts
More file actions
104 lines (97 loc) · 2.23 KB
/
Copy paththeme.config.ts
File metadata and controls
104 lines (97 loc) · 2.23 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
import { defineThemeConfig } from 'valaxy-theme-yun'
export default defineThemeConfig({
// type: 'strato',
type: 'nimbo',
// colors: {
// primary: 'red',
// },
// bg_image: {},
banner: {
enable: true,
// title: '云游君的小站',
title: {
'zh-CN': '云游君的小站',
'en': ['Yun', 'You', 'Jun', 'Site'],
},
siteNameClass: 'bg-gradient-to-r gradient-text from-#1e3c72 to-dark dark:from-#66a6ff dark:to-blue-500',
},
notice: {
enable: true,
content: '公告测试',
},
nav: [
{ text: 'menu.posts', link: '/posts/', icon: 'i-ri-article-line' },
{ text: '小随想', link: '/moments/', icon: 'i-ri-chat-1-line' },
{ text: '项目列表', link: '/projects', icon: 'i-ri-gallery-view' },
{ text: '相册', link: '/albums', icon: 'i-ri-image-line' },
{ text: '友情链接', link: '/links/', icon: 'i-ri-link' },
{ text: '老婆列表', link: '/girls/', icon: 'i-ri-women-line' },
{ text: '赞助者们', link: '/sponsors/', icon: 'i-ri-heart-line' },
],
pages: [
{
name: '小随想',
url: '/moments/',
icon: 'i-ri-chat-1-line',
},
{
name: '项目列表',
url: '/projects',
icon: 'i-ri-gallery-view',
color: 'var(--va-c-text)',
},
{
name: '相册',
url: '/albums',
icon: 'i-ri-image-line',
color: 'var(--va-c-text)',
},
{
name: '友情链接',
url: '/links/',
icon: 'i-ri-link',
// color: 'dodgerblue',
},
{
name: '老婆列表',
url: '/girls/',
icon: 'i-ri-women-line',
// color: 'hotpink',
},
{
name: '赞助者们',
url: '/sponsors/',
icon: 'i-ri-heart-line',
color: 'red',
},
],
sidebar: {
'/yun/': [
{
text: 'Theme Yun',
items: [
{ text: 'Overview', link: '/yun/' },
],
},
],
'/examples/': [
{
text: 'Examples',
items: [
{ text: 'Sites', link: '/examples/sites' },
],
},
],
},
footer: {
since: 2016,
beian: {
enable: true,
icp: '苏ICP备17038157号',
police: '苏公网安备xxxxxx号',
},
icon: {
animated: true,
},
},
})