-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (116 loc) · 3.26 KB
/
index.html
File metadata and controls
130 lines (116 loc) · 3.26 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
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<title>USS44 Social Sampler</title>
<link rel="icon" type="image/png" href="/favicon.png" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;700&display=swap"
rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
retro: {
bg: '#121214', // Slightly lifted from 0a0a0c
panel: '#1e1e22', // More distinct panel color
pad: '#2d2d32', // Lighter pad base
accent: '#ff1e56', // More vibrant red for better visibility
highlight: '#ff4d7d',
text: '#ffffff', // Pure white for primary text
muted: '#a0a0ab', // Clearer muted text
screen: '#2a0a10', // Brighter screen background for contrast
},
channel: {
a: '#ff6b3d',
b: '#33e1ff',
c: '#bf7aff',
d: '#33ff8a',
}
},
fontFamily: {
mono: ['"JetBrains Mono"', '"Courier New"', 'Courier', 'monospace'],
sans: ['Inter', 'system-ui', 'sans-serif'],
},
animation: {
'pulse-fast': 'pulse 0.5s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'spin-slow': 'spin 3s linear infinite',
}
},
},
}
</script>
<style>
:root {
--app-height: 100dvh;
}
html,
body {
height: var(--app-height);
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #121214;
color: #ffffff;
position: fixed;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
touch-action: none;
font-family: 'Inter', system-ui, sans-serif;
}
#root {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}
input,
textarea {
-webkit-user-select: text;
user-select: text;
touch-action: manipulation;
font-family: 'Inter', system-ui, sans-serif;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #121214;
}
::-webkit-scrollbar-thumb {
background: #3f3f46;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #ff1e56;
}
/* Subtle Glow Effect for active elements */
.glow-red {
text-shadow: 0 0 8px rgba(255, 30, 86, 0.6);
}
.bg-glow-red {
box-shadow: 0 0 15px rgba(255, 30, 86, 0.3);
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>