-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (111 loc) · 4.31 KB
/
index.html
File metadata and controls
117 lines (111 loc) · 4.31 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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Archetype Studio</title>
<meta name="description" content="Customize and export Archetype themes with easy-to-use color selection, shape options, cursor styles, bubble sets, counter styles, and login variants. Perfect for personalizing your game experience." />
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png">
<link rel="icon" type="image/png" sizes="192x192" href="/icon-192.png">
<link rel="icon" type="image/png" sizes="512x512" href="/icon-512.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<meta property="og:type" content="website">
<meta property="og:title" content="Archetype Studio">
<meta property="og:description" content="Customize and export Archetype themes with easy-to-use color selection, shape options, cursor styles, bubble sets, counter styles, and login variants.">
<meta property="og:image" content="/archetype/icon.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Archetype Studio">
<meta name="twitter:description" content="Customize and export Archetype themes with easy-to-use color selection, shape options, cursor styles, bubble sets, counter styles, and login variants.">
<meta name="twitter:image" content="/archetype/icon.png">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20,400,0,0" rel="stylesheet" />
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
background: {
dark: '#0f1c23',
panel: '#1c2328',
button: '#263238',
accent: '#2d3b40',
},
primary: {
DEFAULT: 'var(--primary-color)',
glow: 'var(--primary-glow)',
},
muted: '#acb7b9',
archetype: {
hp: '#82e026',
xp: '#2eb2f8',
friendship: '#b61ae8',
}
},
fontFamily: {
sans: ['Spline Sans', 'sans-serif'],
},
},
},
}
</script>
<style>
:root {
--primary-color: #42b9ff;
--primary-glow: rgba(66, 185, 255, 0.4);
--text-on-main: #000000;
--text-on-sub: #ffffff;
--glass-bg: rgba(28, 35, 40, 0.9);
}
body {
background-color: #0f1c23;
color: #ffffff;
font-family: 'Spline Sans', sans-serif;
}
.glass {
background: var(--glass-bg);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.custom-scrollbar::-webkit-scrollbar {
width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #2d3b40;
border-radius: 10px;
}
.hud-shadow {
box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.checkered {
background-image:
linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
background-size: 10px 10px;
background-position: 0 0, 0 5px, 5px 5px, 5px 0;
background-color: rgba(0,0,0,0.2);
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://esm.sh/react@^19.2.4/",
"react": "https://esm.sh/react@^19.2.4",
"react-dom/": "https://esm.sh/react-dom@^19.2.4/"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>