-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1005 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1005 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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Resolver</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {}
}
}
</script>
<style>
/* Colorblind-friendly theme adjustments */
.colorblind .bg-blue-200 { @apply bg-blue-300; }
.colorblind .bg-orange-200 { @apply bg-orange-300; }
.colorblind .bg-purple-200 { @apply bg-purple-300; }
.colorblind .text-gray-500 { @apply text-gray-700; }
.dark .bg-white\/20 { @apply bg-gray-700; }
.dark .bg-white\/30 { @apply bg-gray-600; }
.dark .bg-white\/40 { @apply bg-gray-500; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>