-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 900 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (28 loc) · 900 Bytes
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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KukeChat 扩展预览</title>
<style>
:root {
color-scheme: light;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: #172033;
background: #edf4ff;
}
body {
min-height: 100vh;
margin: 0;
background:
radial-gradient(circle at 20% 15%, rgba(59, 130, 246, 0.24), transparent 32rem),
radial-gradient(circle at 85% 20%, rgba(168, 85, 247, 0.18), transparent 28rem),
linear-gradient(135deg, #f8fbff 0%, #edf4ff 48%, #f9f5ff 100%);
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/preview.tsx"></script>
</body>
</html>