-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
27 lines (25 loc) · 789 Bytes
/
test.html
File metadata and controls
27 lines (25 loc) · 789 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
<!DOCTYPE html>
<html class="dark">
<head>
<meta charset="UTF-8" />
<title>Tailwind CDN Dark Mode Fix</title>
<!-- ✅ Correct Tailwind CDN Config: version + darkMode -->
<script>
tailwind = {
config: {
darkMode: 'class',
theme: {
extend: {},
},
},
};
</script>
<link href="css/tailwind.css" rel="stylesheet">
</head>
<body class="bg-white dark:bg-gray-900 text-black dark:text-white min-h-screen flex items-center justify-center">
<div class="p-6 rounded-lg shadow-lg bg-white dark:bg-gray-800 text-black dark:text-white">
<h1 class="text-2xl font-bold">✅ Dark Mode Test Block</h1>
<p>If this background is dark, dark mode is working!</p>
</div>
</body>
</html>