-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.39 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Probably a Scam - AI Scam Analyzer</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: 'rgb(var(--color-primary) / <alpha-value>)',
secondary: 'rgb(var(--color-secondary) / <alpha-value>)',
accent: 'rgb(var(--color-accent) / <alpha-value>)',
neutral: 'rgb(var(--color-neutral) / <alpha-value>)',
basecustom: 'rgb(var(--color-base) / <alpha-value>)', // Renamed from 'base' to avoid conflict
},
}
}
}
</script>
<style type="text/tailwindcss">
@layer base {
:root {
--color-primary: 22 163 74; /* green-600 */
--color-secondary: 37 99 235; /* blue-600 */
--color-accent: 234 179 8; /* yellow-500 */
--color-neutral: 107 114 128; /* gray-500 */
--color-base: 249 250 251; /* gray-500 */
}
body {
@apply bg-basecustom text-neutral antialiased;
}
}
</style>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!-- Main app script -->
<script type="module" src="/index.tsx"></script>
</body>
</html>