-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
91 lines (84 loc) · 3.07 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Stackie 2023 Resolution</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css"
title="docsify-darklight-theme"
type="text/css"
/>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
themeColor: "#ff6a6a",
name: 'Stackie 2023 Resolution',
repo: 'https://github.com/AbbeyIT/Stackie-2023-resolution',
loadNavbar: true,
coverpage: true,
// Custom file name
coverpage: '_coverpage.md',
// multiple covers
coverpage: ['/', '/zh-cn/'],
// multiple covers and custom file name
coverpage: {
'/': '_coverpage.md',
'/zh-cn/': '_coverpage.md',
},
// load from _sidebar.md
loadSidebar: true,
// load from summary.md
loadSidebar: '_sidebar.md',
darklightTheme: {
siteFont : "PT Sans",
defaultTheme : 'dark',
codeFontFamily : 'Roboto Mono, Monaco, courier, monospace',
bodyFontSize : '17px',
dark: {
accent: '#ff6a6a',
toogleBackground : '#ffffff',
background: '#091a28',
textColor: '#edf6f9',
codeTextColor : '#ffffff',
codeBackgroundColor : '#0e2233',
borderColor : '#0d2538',
blockQuoteColor : '#858585',
highlightColor : '#d22778',
sidebarSublink : '#b4b4b4',
codeTypeColor : '#ffffff',
coverBackground : 'linear-gradient(to left bottom, hsl(0, 54%, 58%) 30%,hsl(195, 50%, 95%) 100%)',
toogleImage : 'url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/sun.svg)'
},
light: {
accent: '#ff6a6a',
toogleBackground : '#091a28',
background: '#ffffff',
textColor: '#34495e',
codeTextColor : '#525252',
codeBackgroundColor : '#F6F6F6',
borderColor : 'rgba(0, 0, 0, 0.07)',
blockQuoteColor : '#858585',
highlightColor : '#d22778',
sidebarSublink : '#656565',
codeTypeColor : '#091a28',
coverBackground : 'linear-gradient(to left bottom, hsl(0, 100%, 71%) 0%,hsl(195, 50%, 95%) 100%)',
toogleImage : 'url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/moon.svg)'
}
}
};
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script
src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js"
type="text/javascript">
</script>
</body>
</html>