-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
33 lines (32 loc) · 962 Bytes
/
test.html
File metadata and controls
33 lines (32 loc) · 962 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
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Catppuccin Mocha</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
base: '#1e1e2e',
text: '#cdd6f4',
lavender: '#b4befe',
}
}
}
}
</script>
</head>
<body class="bg-base min-h-screen flex items-center justify-center px-4">
<div class="text-center">
<h1 class="text-text text-4xl md:text-5xl lg:text-6xl font-bold mb-8">
Mocha
</h1>
<button class="bg-lavender text-base px-8 py-3 rounded-lg font-semibold hover:opacity-90 transition-opacity">
Button
</button>
</div>
</body>
</html>